Function: describe-command

describe-command is an autoloaded, interactive and byte-compiled function defined in help-fns.el.gz.

Signature

(describe-command COMMAND)

Documentation

Display the full documentation of COMMAND (a symbol).

When called from Lisp, COMMAND may also be a function object.

View in manual

Probably introduced at or before Emacs version 28.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/help-fns.el.gz
;;;###autoload
(defun describe-command (command)
  "Display the full documentation of COMMAND (a symbol).
When called from Lisp, COMMAND may also be a function object."
  (interactive (help-fns--describe-function-or-command-prompt 'is-command))
  (describe-function command))