Function: message-narrow-to-headers
message-narrow-to-headers is an autoloaded and byte-compiled function
defined in message.el.gz.
Signature
(message-narrow-to-headers)
Documentation
Narrow the buffer to the head of the message.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
(defun message-narrow-to-headers ()
"Narrow the buffer to the head of the message."
(widen)
(narrow-to-region
(goto-char (point-min))
(if (re-search-forward
(concat "^" (regexp-quote mail-header-separator) "\n") nil t)
(match-beginning 0)
(point-max)))
(goto-char (point-min)))