Function: message-goto-eoh
message-goto-eoh is an autoloaded, interactive and byte-compiled
function defined in message.el.gz.
Signature
(message-goto-eoh &optional INTERACTIVE)
Documentation
Move point to the end of the headers.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-goto-eoh (&optional interactive)
"Move point to the end of the headers."
(interactive "p" message-mode)
(message-goto-body interactive)
(forward-line -1))