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