# HG changeset patch # User Karl Heuer # Date 881213159 0 # Node ID 704e096f6a96e633b5fc9f6cd3bceca39b3e9374 # Parent ac6d8d01e311690d6957fcae9d8d4705b4a09351 (sendmail-send-it): Parse folded Resent-To header properly; don't ignore folded lines. diff -r ac6d8d01e311 -r 704e096f6a96 lisp/mail/sendmail.el --- a/lisp/mail/sendmail.el Thu Dec 04 05:17:31 1997 +0000 +++ b/lisp/mail/sendmail.el Thu Dec 04 05:25:59 1997 +0000 @@ -657,7 +657,9 @@ (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)))