From cd47bdccbe5c5240aedf691c6763a5eee3804db7 Mon Sep 17 00:00:00 2001 From: Karl Heuer Date: Thu, 4 Dec 1997 05:25:59 +0000 Subject: [PATCH] (sendmail-send-it): Parse folded Resent-To header properly; don't ignore folded lines. --- lisp/mail/sendmail.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index e1b1b8f293..4db6e9625b 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))) -- 2.39.2