Function: lisp-show-arglist
lisp-show-arglist is an interactive and byte-compiled function defined
in inf-lisp.el.gz.
Signature
(lisp-show-arglist FN)
Documentation
Send a query to the inferior Lisp for the arglist for function FN.
See variable lisp-arglist-command.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-show-arglist (fn)
"Send a query to the inferior Lisp for the arglist for function FN.
See variable `lisp-arglist-command'."
(interactive (lisp-symprompt "Arglist" (lisp-fn-called-at-pt)))
(comint-proc-query (inferior-lisp-proc) (format lisp-arglist-command fn)))