From 4cb84bc8773ec9f5d9b8d11723741054ce7ff2ff Mon Sep 17 00:00:00 2001 From: yamaoka Date: Wed, 16 Jun 1999 04:54:09 +0000 Subject: [PATCH] (smtpmail-send-it): Extend the search bound to the end of the field for fetching the recipients from Resent-To. --- smtpmail.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smtpmail.el b/smtpmail.el index 3d330ec..6458710 100644 --- a/smtpmail.el +++ b/smtpmail.el @@ -130,7 +130,8 @@ This is relative to `smtpmail-queue-dir'.") (save-restriction (narrow-to-region (point) (save-excursion - (end-of-line) + (while (looking-at "^[ \t]") + (forward-line 1)) (point))) (append (mail-parse-comma-list) resend-to-addresses)))) -- 1.7.10.4