Function: mode-local-augment-function-help
mode-local-augment-function-help is a byte-compiled function defined
in mode-local.el.gz.
Signature
(mode-local-augment-function-help SYMBOL)
Documentation
Augment the *Help* buffer for SYMBOL.
SYMBOL is a function that can be overridden.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/mode-local.el.gz
(defun mode-local-augment-function-help (symbol)
"Augment the *Help* buffer for SYMBOL.
SYMBOL is a function that can be overridden."
(with-current-buffer "*Help*"
(pop-to-buffer (current-buffer))
(goto-char (point-min))
(unless (re-search-forward "^$" nil t)
(goto-char (point-max))
(beginning-of-line)
(forward-line -1))
(let ((inhibit-read-only t))
(insert (substitute-command-keys (mode-local--overload-docstring-extension symbol))
"\n")
;; NOTE TO SELF:
;; LIST ALL LOADED OVERRIDES FOR SYMBOL HERE
)))