Mercurial > emacs
changeset 23185:945fed18ddb8
(rmail-primary-inbox-list): Make the initial
value in the `repeat' alternative a list.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Fri, 04 Sep 1998 20:38:16 +0000 |
parents | 973ac8db2f92 |
children | a49b7294e019 |
files | lisp/mail/rmail.el |
diffstat | 1 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/mail/rmail.el Fri Sep 04 20:37:22 1998 +0000 +++ b/lisp/mail/rmail.el Fri Sep 04 20:38:16 1998 +0000 @@ -187,9 +187,9 @@ ;; 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)