(mail-header-end): Widen.

(mail-text-start): Widen.
This commit is contained in:
Richard M. Stallman 1998-06-09 06:04:20 +00:00
parent b7ec9e590e
commit 66191b7ecb

View file

@ -434,16 +434,20 @@ Here are commands that move to a header field (and create it if there isn't):
(defun mail-header-end ()
"Return the buffer location of the end of headers, as a number."
(save-excursion
(rfc822-goto-eoh)
(point)))
(save-restriction
(widen)
(save-excursion
(rfc822-goto-eoh)
(point))))
(defun mail-text-start ()
"Return the buffer location of the start of text, as a number."
(save-excursion
(rfc822-goto-eoh)
(forward-line 1)
(point)))
(save-restriction
(widen)
(save-excursion
(rfc822-goto-eoh)
(forward-line 1)
(point))))
(defun mail-sendmail-delimit-header ()
"Set up whatever header delimiter convention sendmail will use.