]> git.eshelyaron.com Git - emacs.git/commitdiff
(rmail-primary-inbox-list): Make the initial
authorKarl Heuer <kwzh@gnu.org>
Fri, 4 Sep 1998 20:38:16 +0000 (20:38 +0000)
committerKarl Heuer <kwzh@gnu.org>
Fri, 4 Sep 1998 20:38:16 +0000 (20:38 +0000)
value in the `repeat' alternative a list.

lisp/mail/rmail.el

index d4b60832697295c2ba86ffb08ba7ada8e9adf646..6e609a6dfc393fa214471595c29a87f982862045 100644 (file)
@@ -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)