From: yamaoka Date: Wed, 16 Jun 1999 04:54:09 +0000 (+0000) Subject: (smtpmail-send-it): Extend the search bound to the end of the field for X-Git-Tag: flim-1_13_0~7 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=4cb84bc8773ec9f5d9b8d11723741054ce7ff2ff;p=elisp%2Fflim.git (smtpmail-send-it): Extend the search bound to the end of the field for fetching the recipients from Resent-To. --- 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))))