Function: lisp-describe-sym

lisp-describe-sym is an interactive and byte-compiled function defined in inf-lisp.el.gz.

Signature

(lisp-describe-sym SYM)

Documentation

Send a command to the inferior Lisp to describe symbol SYM.

See variable lisp-describe-sym-command.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/inf-lisp.el.gz
(defun lisp-describe-sym (sym)
  "Send a command to the inferior Lisp to describe symbol SYM.
See variable `lisp-describe-sym-command'."
  (interactive (lisp-symprompt "Describe" (lisp-var-at-pt)))
  (comint-proc-query (inferior-lisp-proc)
		     (format lisp-describe-sym-command sym)))