Mercurial > emacs
changeset 20408:704e096f6a96
(sendmail-send-it): Parse folded
Resent-To header properly; don't ignore folded lines.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 04 Dec 1997 05:25:59 +0000 |
parents | ac6d8d01e311 |
children | 87d7cc50d029 |
files | lisp/mail/sendmail.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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)))