Function: rmail-beginning-of-message
rmail-beginning-of-message is an interactive and byte-compiled
function defined in rmail.el.gz.
Signature
(rmail-beginning-of-message)
Documentation
Show current message starting from the beginning.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmail.el.gz
(defun rmail-beginning-of-message ()
"Show current message starting from the beginning."
(interactive)
(let ((rmail-show-message-hook '((lambda () (goto-char (point-min)))))
(rmail-header-style (with-current-buffer (if (rmail-buffers-swapped-p)
rmail-view-buffer
rmail-buffer)
rmail-header-style)))
(rmail-show-message rmail-current-message)))