Function: message-narrow-to-head

message-narrow-to-head is an autoloaded and byte-compiled function defined in message.el.gz.

Signature

(message-narrow-to-head)

Documentation

Narrow the buffer to the head of the message.

Point is left at the beginning of the narrowed-to region.

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/message.el.gz
;; FIXME: clarify difference: message-narrow-to-head,
;; message-narrow-to-headers-or-head, message-narrow-to-headers
(defun message-narrow-to-head ()
  "Narrow the buffer to the head of the message.
Point is left at the beginning of the narrowed-to region."
  (widen)
  (message-narrow-to-head-1))