aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-05-16 19:40:34 -0700
committerGlenn Morris2011-05-16 19:40:34 -0700
commit2dd12e7ff01f09bc701aee77c03d50f52fc31033 (patch)
tree5f6574df6ea8622cd7af05ffceeda45e698b551e
parente4157b9c9208b87b827b879d3876651311d97e0b (diff)
downloademacs-2dd12e7ff01f09bc701aee77c03d50f52fc31033.tar.gz
emacs-2dd12e7ff01f09bc701aee77c03d50f52fc31033.zip
* lisp/mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/mail/mail-utils.el2
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 19ea787d4b8..844fcaad833 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12011-05-17 Glenn Morris <rgm@gnu.org> 12011-05-17 Glenn Morris <rgm@gnu.org>
2 2
3 * mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
4
3 * progmodes/idlw-shell.el (idlwave-shell-complete-filename): 5 * progmodes/idlw-shell.el (idlwave-shell-complete-filename):
4 Replace obsolete function. 6 Replace obsolete function.
5 7
diff --git a/lisp/mail/mail-utils.el b/lisp/mail/mail-utils.el
index 328a5d50d34..2e6f06a6758 100644
--- a/lisp/mail/mail-utils.el
+++ b/lisp/mail/mail-utils.el
@@ -236,7 +236,7 @@ comma-separated list, and return the pruned list."
236 (setq mail-dont-reply-to-names 236 (setq mail-dont-reply-to-names
237 (concat 237 (concat
238 ;; `rmail-default-dont-reply-to-names' is obsolete. 238 ;; `rmail-default-dont-reply-to-names' is obsolete.
239 (if rmail-default-dont-reply-to-names 239 (if (bound-and-true-p rmail-default-dont-reply-to-names)
240 (concat rmail-default-dont-reply-to-names "\\|") 240 (concat rmail-default-dont-reply-to-names "\\|")
241 "") 241 "")
242 (if (and user-mail-address 242 (if (and user-mail-address