From: Richard M. Stallman Date: Tue, 5 Jul 1994 04:06:00 +0000 (+0000) Subject: (rmail-spool-directory): Use /var/mail for bsd386. X-Git-Tag: emacs-19.34~7715 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fa8fb184b3cd1faa8a58dd5398ae0a83aa9a3209;p=emacs.git (rmail-spool-directory): Use /var/mail for bsd386. --- diff --git a/lisp/paths.el b/lisp/paths.el index 9682cb19337..268bdc48ab0 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -97,6 +97,10 @@ Will use `gnus-startup-file'-SERVER instead if exists.") ((and (string-match "^[^-]+-[^-]+-sysv4" system-configuration) (file-exists-p "/var/mail")) "/var/mail/") + ;; BSD386 is said to use /var/mail. + ((and (string-match "^[^-]+-[^-]+-bsd386" system-configuration) + (file-exists-p "/var/mail")) + "/var/mail/") ((memq system-type '(dgux hpux usg-unix-v unisoft-unix rtu irix)) "/usr/mail/") ((eq system-type 'netbsd)