diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-05-15 21:19:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-05-15 21:19:48 +0000 |
commit | 3bdbb9adc6e7d8989dc96dc4b9dc5f242ea05b27 (patch) | |
tree | a27318bee3dba8edd45c53cde09ad4b6a913da3e | |
parent | 2079601b890ae16cf3c80dca0dfcb12118ffae10 (diff) | |
download | emacs-3bdbb9adc6e7d8989dc96dc4b9dc5f242ea05b27.tar.gz |
Fix previous change.
-rw-r--r-- | lisp/mail/rmail.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 765160e9eb1..6f8353d859e 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -173,9 +173,9 @@ and the value of the environment variable MAIL overrides it)." ;; Don't use backquote here, because we don't want to need it ;; at load time. :type (list 'choice '(const :tag "Default" nil) - (list 'repeat ':value ,(or (getenv "MAIL") - (concat "/var/spool/mail/" - (getenv "USER"))) + (list 'repeat ':value (or (getenv "MAIL") + (concat "/var/spool/mail/" + (getenv "USER"))) 'file)) :group 'rmail-retrieve :group 'rmail-files) |