Function: mh-letter-header-end
mh-letter-header-end is a byte-compiled function defined in
mh-letter.el.gz.
Signature
(mh-letter-header-end)
Documentation
Find the end of the message header.
This function is to be used only for font locking. It works by
searching for mh-mail-header-separator in the buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-letter.el.gz
(defun mh-letter-header-end ()
"Find the end of the message header.
This function is to be used only for font locking. It works by
searching for `mh-mail-header-separator' in the buffer."
(save-excursion
(goto-char (point-min))
(cond ((equal mh-mail-header-separator "") (point-min))
((search-forward (format "\n%s\n" mh-mail-header-separator) nil t)
(line-beginning-position 0))
(t (point-min)))))