From: Karl Heuer Date: Fri, 4 Sep 1998 20:38:16 +0000 (+0000) Subject: (rmail-primary-inbox-list): Make the initial X-Git-Tag: emacs-20.4~1764 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=65e7e846c918d0c079edf8b45a025636f8dd08be;p=emacs.git (rmail-primary-inbox-list): Make the initial value in the `repeat' alternative a list. --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index d4b60832697..6e609a6dfc3 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -187,9 +187,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 (list (or (getenv "MAIL") + (concat "/var/spool/mail/" + (getenv "USER")))) 'file)) :group 'rmail-retrieve :group 'rmail-files)