diff options
| author | Glenn Morris <rgm@gnu.org> | 2011-05-16 19:40:34 -0700 |
|---|---|---|
| committer | Glenn Morris <rgm@gnu.org> | 2011-05-16 19:40:34 -0700 |
| commit | 2dd12e7ff01f09bc701aee77c03d50f52fc31033 (patch) | |
| tree | 5f6574df6ea8622cd7af05ffceeda45e698b551e | |
| parent | e4157b9c9208b87b827b879d3876651311d97e0b (diff) | |
| download | emacs-2dd12e7ff01f09bc701aee77c03d50f52fc31033.tar.gz | |
* lisp/mail/mail-utils.el (mail-dont-reply-to): Silence compiler.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/mail/mail-utils.el | 2 |
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 @@ 2011-05-17 Glenn Morris <rgm@gnu.org> + * mail/mail-utils.el (mail-dont-reply-to): Silence compiler. + * progmodes/idlw-shell.el (idlwave-shell-complete-filename): Replace obsolete function. 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." (setq mail-dont-reply-to-names (concat ;; `rmail-default-dont-reply-to-names' is obsolete. - (if rmail-default-dont-reply-to-names + (if (bound-and-true-p rmail-default-dont-reply-to-names) (concat rmail-default-dont-reply-to-names "\\|") "") (if (and user-mail-address |
