diff options
| author | Karl Heuer <kwzh@gnu.org> | 1997-12-04 05:25:59 +0000 |
|---|---|---|
| committer | Karl Heuer <kwzh@gnu.org> | 1997-12-04 05:25:59 +0000 |
| commit | cd47bdccbe5c5240aedf691c6763a5eee3804db7 (patch) | |
| tree | 0790047a2d905cb5896bfd884ec26a77f91fe4a1 /lisp | |
| parent | 9d8354ef192b611ecd9a5bc7bf38bcf8a8ced206 (diff) | |
| download | emacs-cd47bdccbe5c5240aedf691c6763a5eee3804db7.tar.gz | |
(sendmail-send-it): Parse folded
Resent-To header properly; don't ignore folded lines.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/mail/sendmail.el | 4 |
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))) |
