aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-07-30 11:00:46 +0000
committerGerd Moellmann2001-07-30 11:00:46 +0000
commit8744971146533b8f1010b99cd8ada7dc813b6b4c (patch)
tree925c854c56cd5c18fcc65c4835c11a28dae526a1
parent6594ac22d459f97ece708d4ee04b63d133d9a881 (diff)
downloademacs-8744971146533b8f1010b99cd8ada7dc813b6b4c.tar.gz
emacs-8744971146533b8f1010b99cd8ada7dc813b6b4c.zip
(mail-strip-quoted-names): Replace text
literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/mail/mail-utils.el4
2 files changed, 7 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8b30afe17cc..88df059d55c 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -5,6 +5,11 @@
5 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to 5 * desktop.el (desktop-save): Add `-*- coding: emacs-mule -*-' to
6 the desktop file. 6 the desktop file.
7 7
82001-07-30 Simon Josefsson <jas@extundo.com>
9
10 * mail/mail-utils.el (mail-strip-quoted-names): Replace text
11 literally. Reported by Sean Rima <sean@**Delete**.tcob1.net>.
12
82001-07-27 Gerd Moellmann <gerd@gnu.org> 132001-07-27 Gerd Moellmann <gerd@gnu.org>
9 14
10 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function. 15 * emacs-lisp/lisp-mode.el (last-sexp-setup-props): New function.
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el
index 5526dc10404..84ed13e58bb 100644
--- a/lisp/mail/mail-utils.el
+++ b/lisp/mail/mail-utils.el
@@ -1,6 +1,6 @@
1;;; mail-utils.el --- utility functions used both by rmail and rnews 1;;; mail-utils.el --- utility functions used both by rmail and rnews
2 2
3;; Copyright (C) 1985 Free Software Foundation, Inc. 3;; Copyright (C) 1985, 2001 Free Software Foundation, Inc.
4 4
5;; Maintainer: FSF 5;; Maintainer: FSF
6;; Keywords: mail, news 6;; Keywords: mail, news
@@ -194,7 +194,7 @@ Return a modified address list."
194 (while (setq pos (string-match "\\(,\\s-*\\|\\`\\)\\([^,]*<\\([^>,:]*\\)>[^,]*\\)\\(\\s-*,\\|\\'\\)" 194 (while (setq pos (string-match "\\(,\\s-*\\|\\`\\)\\([^,]*<\\([^>,:]*\\)>[^,]*\\)\\(\\s-*,\\|\\'\\)"
195 address)) 195 address))
196 (setq address (replace-match (match-string 3 address) 196 (setq address (replace-match (match-string 3 address)
197 nil nil address 2))) 197 nil 'literal address 2)))
198 address)))) 198 address))))
199 199
200; rmail-dont-reply-to-names is defined in loaddefs 200; rmail-dont-reply-to-names is defined in loaddefs