From: Richard M. Stallman Date: Sat, 18 Nov 1995 18:45:04 +0000 (+0000) Subject: (rmail-dont-reply-to): Preserve whitespace after comma. X-Git-Tag: emacs-19.34~2270 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6540a6f85b7b0bc2f62ec6bc6d0785f0be8c0c1f;p=emacs.git (rmail-dont-reply-to): Preserve whitespace after comma. --- diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el index 80a1fbbc9ce..302d5d5eb10 100644 --- a/lisp/mail/mail-utils.el +++ b/lisp/mail/mail-utils.el @@ -147,7 +147,7 @@ Usenet paths ending in an element that matches are removed also." (case-fold-search t) pos epos) (while (setq pos (string-match match userids)) - (if (> pos 0) (setq pos (1+ pos))) + (if (> pos 0) (setq pos (match-beginning 2))) (setq epos (if (string-match "[ \t\n,]+" userids (match-end 0)) (match-end 0)