summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-03-29 04:21:32 +0000
committerRichard M. Stallman <rms@gnu.org>1997-03-29 04:21:32 +0000
commitb8f3a097ad560eab522fa9dc72f251ae31a87216 (patch)
treeae1ab6ba987521429516dd953ec9bfa118801fec
parent7ff3757e3e5dfe5b1b6d25ba617e35ef8cc31546 (diff)
downloademacs-b8f3a097ad560eab522fa9dc72f251ae31a87216.tar.gz
(make-auto-save-file-name): Replace both / and \
with sequences starting with %.
-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 2462a053409..71dd1950728 100644
--- a/lisp/mail/mail-utils.el
+++ b/lisp/mail/mail-utils.el
@@ -142,7 +142,7 @@ Usenet paths ending in an element that matches are removed also."
"")
(concat (regexp-quote (user-login-name))
"\\>"))))
- (let ((match (concat "\\(^\\|,\\)[ \t\n]*\\([^,\n]*!\\|\\)\\("
+ (let ((match (concat "\\(^\\|,\\)[ \t\n]*\\([^,\n]*[!<]\\|\\)\\("
rmail-dont-reply-to-names
"\\|[^\,.<]*<\\(" rmail-dont-reply-to-names "\\)"
"\\)"))