Function: mm-head-p
mm-head-p is a byte-compiled function defined in mm-decode.el.gz.
Signature
(mm-head-p &optional POINT)
Documentation
Return non-nil if point is in the article header.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mm-decode.el.gz
(defun mm-head-p (&optional point)
"Return non-nil if point is in the article header."
(let ((point (or point (point))))
(save-excursion
(goto-char point)
(and (not (re-search-backward "^$" nil t))
(re-search-forward "^$" nil t)))))