summaryrefslogtreecommitdiff
path: root/lisp/mail/rmail.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-05-15 21:19:48 +0000
committerRichard M. Stallman <rms@gnu.org>1997-05-15 21:19:48 +0000
commit0389e8f2dfc7d7116e1d2276056c441f800b1274 (patch)
treeac414792ea91d6008e658c58d1e19782b213261f /lisp/mail/rmail.el
parent3652eeb276b762a0236205f0303c9bb0c955bd5d (diff)
downloademacs-0389e8f2dfc7d7116e1d2276056c441f800b1274.tar.gz
Fix previous change.
Diffstat (limited to 'lisp/mail/rmail.el')
-rw-r--r--lisp/mail/rmail.el6
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)