Function: message-info
message-info is an interactive and byte-compiled function defined in
message.el.gz.
Signature
(message-info &optional ARG)
Documentation
Display the Message manual.
Prefixed with one C-u (universal-argument), display the Emacs MIME
manual. With two C-u (universal-argument)'s, display the EasyPG or
PGG manual, depending on the value of mml2015-use.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-info (&optional arg)
"Display the Message manual.
Prefixed with one \\[universal-argument], display the Emacs MIME
manual. With two \\[universal-argument]'s, display the EasyPG or
PGG manual, depending on the value of `mml2015-use'."
(interactive "p")
(info (format "(%s)Top"
(cond ((eq arg 16)
(require 'mml2015)
mml2015-use)
((eq arg 4) 'emacs-mime)
((and (not (booleanp arg))
(symbolp arg))
arg)
(t
'message)))))