diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-10-18 05:22:27 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-10-18 05:22:27 +0000 |
commit | b6c96aa028af0d38e95ca805b798ed642577e20c (patch) | |
tree | 310ad43b62a135d056fcbb5086b9ea6a1c8316c8 /lisp/paths.el | |
parent | 815d2127f5a2b836548b8b0c4263638660f747e4 (diff) | |
download | emacs-b6c96aa028af0d38e95ca805b798ed642577e20c.tar.gz |
(rmail-spool-directory): Add a condition to test the Bull DPX/2.
Diffstat (limited to 'lisp/paths.el')
-rw-r--r-- | lisp/paths.el | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 9b63d59063d..50bdac7c87c 100644 --- a/lisp/paths.el +++ b/lisp/paths.el @@ -91,6 +91,10 @@ Will use `gnus-startup-file'-SERVER instead if exists.") (defconst rmail-spool-directory (cond ((string-match "^[^-]+-[^-]+-sco3.2v4" system-configuration) "/usr/spool/mail/") + ;; On The Bull DPX/2 /usr/spool/mail is used although + ;; it is usg-unix-v. + ((string-match "^m68k-bull-sysv3" system-configuration) + "/usr/spool/mail/") ;; SVR4 and recent BSD are said to use this. ;; Rather than trying to know precisely which systems use it, ;; let's assume this dir is never used for anything else. |