Function: lisp-show-function-documentation

lisp-show-function-documentation is an interactive and byte-compiled function defined in inf-lisp.el.gz.

Signature

(lisp-show-function-documentation FN)

Documentation

Send a command to the inferior Lisp to give documentation for function FN.

See variable lisp-function-doc-command.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
;;; Documentation functions: fn and var doc, arglist, and symbol describe.
;;; ======================================================================

(defun lisp-show-function-documentation (fn)
  "Send a command to the inferior Lisp to give documentation for function FN.
See variable `lisp-function-doc-command'."
  (interactive (lisp-symprompt "Function doc" (lisp-fn-called-at-pt)))
  (comint-proc-query (inferior-lisp-proc)
		     (format lisp-function-doc-command fn)))