Function: nnmail-within-headers-p
nnmail-within-headers-p is a byte-compiled function defined in
nnmail.el.gz.
Signature
(nnmail-within-headers-p)
Documentation
Check to see if point is within the headers of a unix mail message.
Doesn't change point.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmail.el.gz
(defun nnmail-within-headers-p ()
"Check to see if point is within the headers of a unix mail message.
Doesn't change point."
(let ((pos (point)))
(save-excursion
(and (nnmail-search-unix-mail-delim-backward)
(not (search-forward "\n\n" pos t))))))