Function: allout-called-interactively-p
allout-called-interactively-p is a macro defined in allout.el.gz.
Signature
(allout-called-interactively-p)
Documentation
A version of called-interactively-p independent of Emacs version.
Source Code
;; Defined in /usr/src/emacs/lisp/allout.el.gz
;;;_ > allout-called-interactively-p ()
(defmacro allout-called-interactively-p ()
"A version of `called-interactively-p' independent of Emacs version."
;; ... to ease maintenance of allout without betraying deprecation.
(if (ignore-errors (called-interactively-p 'interactive) t)
'(called-interactively-p 'interactive)
'(called-interactively-p)))