1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(rmail-primary-inbox-list): Make the initial

value in the `repeat' alternative a list.
This commit is contained in:
Karl Heuer 1998-09-04 20:38:16 +00:00
parent c97a5db406
commit 65e7e846c9

View 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)