Function: mail-sendmail-delimit-header
mail-sendmail-delimit-header is a byte-compiled function defined in
sendmail.el.gz.
Signature
(mail-sendmail-delimit-header)
Documentation
Set up whatever header delimiter convention sendmail will use.
Concretely: replace the first blank line in the header with the separator.
Source Code
;; Defined in /usr/src/emacs/lisp/mail/sendmail.el.gz
(defun mail-sendmail-delimit-header ()
"Set up whatever header delimiter convention sendmail will use.
Concretely: replace the first blank line in the header with the separator."
(rfc822-goto-eoh)
(insert mail-header-separator)
(point))