diff options
author | Erik Naggum <erik@naggum.no> | 1995-12-22 12:13:30 +0000 |
---|---|---|
committer | Erik Naggum <erik@naggum.no> | 1995-12-22 12:13:30 +0000 |
commit | 2ddff9f2860fa49946ac1ef29c0cdaef60bc66ad (patch) | |
tree | 79b13e8987667438c02341835847f398c965527f /lisp/paths.el | |
parent | 6a1de14a050023998ccc636a28a415a2c9f73c4b (diff) | |
download | emacs-2ddff9f2860fa49946ac1ef29c0cdaef60bc66ad.tar.gz |
(rmail-spool-directory): Append slash to all pathnames.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index f4516d37a61..7bdd8ca712b 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -103,7 +103,7 @@ Will use `gnus-startup-file'-SERVER instead if exists.") "/var/mail/") ;; Many GNU/Linux systems use this name. ((file-exists-p "/var/spool/mail") - "/var/spool/mail") + "/var/spool/mail/") ((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix)) "/usr/mail/") (t "/usr/spool/mail/")) |