Function: mail-header-end
mail-header-end is a byte-compiled function defined in sendmail.el.gz.
Signature
(mail-header-end)
Documentation
Return the buffer location of the end of headers, as a number.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-header-end ()
"Return the buffer location of the end of headers, as a number."
(save-restriction
(widen)
(save-excursion
(rfc822-goto-eoh)
(point))))