summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-11-18 18:45:04 +0000
committerRichard M. Stallman <rms@gnu.org>1995-11-18 18:45:04 +0000
commit0b9d5cdd2f6586a7687adb8b40fcc4b6ba81c202 (patch)
tree8da99686a97a0080781e5f6c1bdab6bf06ffa0f8
parentb16c622f81a8914e0cfa418ef93fc97475a723e5 (diff)
downloademacs-0b9d5cdd2f6586a7687adb8b40fcc4b6ba81c202.tar.gz
(rmail-dont-reply-to): Preserve whitespace after comma.
-rw-r--r--lisp/mail/mail-utils.el2
1 files changed, 1 insertions, 1 deletions
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)