Function: mh-help

mh-help is an autoloaded, interactive and byte-compiled function defined in mh-utils.el.gz.

Signature

(mh-help &optional HELP-MESSAGES)

Documentation

Display cheat sheet for the MH-E commands.

See mh-set-help for setting the help messages. HELP-MESSAGES are used instead if given. This is a list of one or more strings which are concatenated together and displayed in a help buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-utils.el.gz
;;;###mh-autoload
(defun mh-help (&optional help-messages)
  "Display cheat sheet for the MH-E commands.
See `mh-set-help' for setting the help messages.
HELP-MESSAGES are used instead if given.
This is a list of one or more strings which are concatenated together
and displayed in a help buffer."
  (interactive)
  (let* ((help (or help-messages
                  (cdr (assoc nil (assoc major-mode mh-help-messages)))))
         (text (substitute-command-keys (mapconcat #'identity help ""))))
    (with-electric-help
     (lambda ()
       (insert text))
     mh-help-buffer)))