Function: describe-minor-mode-from-symbol
describe-minor-mode-from-symbol is an interactive and byte-compiled
function defined in help.el.gz.
Signature
(describe-minor-mode-from-symbol SYMBOL)
Documentation
Display documentation of a minor mode given as a symbol, SYMBOL.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/help.el.gz
(defun describe-minor-mode-from-symbol (symbol)
"Display documentation of a minor mode given as a symbol, SYMBOL."
(interactive (list (intern (completing-read
"Minor mode symbol: "
(describe-minor-mode-completion-table-for-symbol)))))
(if (fboundp symbol)
(describe-function symbol)
(describe-variable symbol)))