summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1997-12-04 05:25:59 +0000
committerKarl Heuer <kwzh@gnu.org>1997-12-04 05:25:59 +0000
commitcd47bdccbe5c5240aedf691c6763a5eee3804db7 (patch)
tree0790047a2d905cb5896bfd884ec26a77f91fe4a1
parent9d8354ef192b611ecd9a5bc7bf38bcf8a8ced206 (diff)
downloademacs-cd47bdccbe5c5240aedf691c6763a5eee3804db7.tar.gz
(sendmail-send-it): Parse folded
Resent-To header properly; don't ignore folded lines.
-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 e1b1b8f2936..4db6e9625ba 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -657,7 +657,9 @@ the user from the mailer."
(save-restriction
(narrow-to-region (point)
(save-excursion
- (end-of-line)
+ (forward-line 1)
+ (while (looking-at "^[ \t]")
+ (forward-line 1))
(point)))
(append (mail-parse-comma-list)
resend-to-addresses)))