Function: oclosure-interactive-form
oclosure-interactive-form is a byte-compiled function defined in
simple.el.gz.
Signature
(oclosure-interactive-form FUNCTION)
Documentation
Return the interactive form of FUNCTION or nil if none.
This is called by interactive-form when invoked on OClosures.
It should return either nil or a two-element list of the form (interactive FORM)
where FORM is like the first arg of the interactive special form.
Add your methods to this generic function, but always call interactive-form
instead.
Probably introduced at or before Emacs version 29.1.
Implementations
(oclosure-interactive-form (_ kmacro)) in `kmacro.el'.
Undocumented
(oclosure-interactive-form (AD advice) &optional _) in `nadvice.el'.
Undocumented
(oclosure-interactive-form (F cconv--interactive-helper)) in `simple.el'.
Undocumented
(oclosure-interactive-form FUNCTION) in `simple.el'.
Undocumented
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
;; This should be in `oclosure.el' but that file is loaded before `cl-generic'.
(cl-defgeneric oclosure-interactive-form (_function)
"Return the interactive form of FUNCTION or nil if none.
This is called by `interactive-form' when invoked on OClosures.
It should return either nil or a two-element list of the form (interactive FORM)
where FORM is like the first arg of the `interactive' special form.
Add your methods to this generic function, but always call `interactive-form'
instead."
;; (interactive-form function)
nil)