Function: describe-minor-mode-from-indicator
describe-minor-mode-from-indicator is an interactive and byte-compiled
function defined in help.el.gz.
Signature
(describe-minor-mode-from-indicator INDICATOR)
Documentation
Display documentation of a minor mode specified by INDICATOR.
If you call this function interactively, you can give indicator which is currently activated with completion.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/help.el.gz
(defun describe-minor-mode-from-indicator (indicator)
"Display documentation of a minor mode specified by INDICATOR.
If you call this function interactively, you can give indicator which
is currently activated with completion."
(interactive (list
(completing-read
"Minor mode indicator: "
(describe-minor-mode-completion-table-for-indicator))))
(let ((minor-mode (lookup-minor-mode-from-indicator indicator)))
(if minor-mode
(describe-minor-mode-from-symbol minor-mode)
(error "Cannot find minor mode for `%s'" indicator))))