diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-06-12 03:13:51 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-06-12 03:13:51 +0000 |
commit | 73d8f1dec6790220aed20097ef161f5ac0e57593 (patch) | |
tree | 578e2cb165b2e84a2a321e842e4adaad50d696b6 /lisp/mail/rmailsum.el | |
parent | 73bff96eb415b981f666674eb02856bedda03b8b (diff) | |
download | emacs-73d8f1dec6790220aed20097ef161f5ac0e57593.tar.gz |
(rmail-new-summary): Fix typo; (concat ": " description) should be eval'ed.
Diffstat (limited to 'lisp/mail/rmailsum.el')
-rw-r--r-- | lisp/mail/rmailsum.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/rmailsum.el b/lisp/mail/rmailsum.el index 1be1e14fae6..a3600fabba0 100644 --- a/lisp/mail/rmailsum.el +++ b/lisp/mail/rmailsum.el @@ -207,7 +207,7 @@ nil for FUNCTION means all messages." (setq buffer-read-only t) (rmail-summary-mode) (make-local-variable 'minor-mode-alist) - (setq minor-mode-alist (list '(t (concat ": " description)))) + (setq minor-mode-alist (list (list t (concat ": " description)))) (setq rmail-buffer rbuf rmail-summary-redo redo-form rmail-total-messages total)))) |