Function: closurep
closurep is a byte-compiled function defined in compat-30.el.
Signature
(closurep OBJECT)
Documentation
[Compatibility function for closurep, defined in Emacs 30.1. See (compat)
Emacs 30.1' for more details.]
Return t if OBJECT is a function of type closure.
Aliases
Source Code
;; Defined in ~/.emacs.d/elpa/compat-30.1.0.1/compat-30.el
(compat-defun closurep (object) ;; <compat-tests:closurep>
"Return t if OBJECT is a function of type closure."
(declare (side-effect-free error-free))
(eq (car-safe object) 'closure))