diff options
| author | Richard M. Stallman | 1995-11-18 18:45:04 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1995-11-18 18:45:04 +0000 |
| commit | 6540a6f85b7b0bc2f62ec6bc6d0785f0be8c0c1f (patch) | |
| tree | cfe1047c06d0fd9aeda00200a05bffe4850282cf | |
| parent | 83ff5106cf63645cd63686e440cac84b566505f3 (diff) | |
| download | emacs-6540a6f85b7b0bc2f62ec6bc6d0785f0be8c0c1f.tar.gz emacs-6540a6f85b7b0bc2f62ec6bc6d0785f0be8c0c1f.zip | |
(rmail-dont-reply-to): Preserve whitespace after comma.
| -rw-r--r-- | lisp/mail/mail-utils.el | 2 |
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." | |||
| 147 | (case-fold-search t) | 147 | (case-fold-search t) |
| 148 | pos epos) | 148 | pos epos) |
| 149 | (while (setq pos (string-match match userids)) | 149 | (while (setq pos (string-match match userids)) |
| 150 | (if (> pos 0) (setq pos (1+ pos))) | 150 | (if (> pos 0) (setq pos (match-beginning 2))) |
| 151 | (setq epos | 151 | (setq epos |
| 152 | (if (string-match "[ \t\n,]+" userids (match-end 0)) | 152 | (if (string-match "[ \t\n,]+" userids (match-end 0)) |
| 153 | (match-end 0) | 153 | (match-end 0) |