summaryrefslogtreecommitdiff
path: root/lisp/mail/sendmail.el
diff options
context:
space:
mode:
authorKatsumi Yamaoka <yamaoka@jpl.org>2018-04-17 06:22:17 +0000
committerKatsumi Yamaoka <yamaoka@jpl.org>2018-04-17 06:22:17 +0000
commit003071346cdc914f28a8e8b3a8bf0c8f5f3b52dc (patch)
tree1ac333b5487154d1d71b44cd0c1885f6e701b50c /lisp/mail/sendmail.el
parentb0d261e29e5c1ffb9bc76e3519dd7525ab1edac4 (diff)
downloademacs-003071346cdc914f28a8e8b3a8bf0c8f5f3b52dc.tar.gz
* lisp/mail/sendmail.el (mail-sendmail-undelimit-header): Work for
the case where the mail header separator has already been deleted.
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r--lisp/mail/sendmail.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index ab6ac4b1885..f1c6d395997 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -785,7 +785,9 @@ Concretely: replace the first blank line in the header with the separator."
"Remove header separator to put the message in correct form for sendmail.
Leave point at the start of the delimiter line."
(goto-char (point-min))
- (when (re-search-forward (concat "^" (regexp-quote mail-header-separator) "\n"))
+ (when (re-search-forward
+ (concat "^" (regexp-quote mail-header-separator) "\n")
+ nil t)
(replace-match "\n"))
(rfc822-goto-eoh))