comparison lisp/paths.el @ 1618:a5486162a65a

* paths.el (rmail-spool-directory): Add dgux-unix to the list of systems which put their mail in "/usr/mail".
author Jim Blandy <jimb@redhat.com>
date Mon, 16 Nov 1992 01:39:23 +0000
parents c3d069d83cc6
children 975c866af92d
comparison
equal deleted inserted replaced
1617:9002bc96d2d6 1618:a5486162a65a
90 (defvar gnus-startup-file "~/.newsrc" 90 (defvar gnus-startup-file "~/.newsrc"
91 "The file listing groups to which user is subscribed. 91 "The file listing groups to which user is subscribed.
92 Will use `gnus-startup-file'-SERVER instead if exists.") 92 Will use `gnus-startup-file'-SERVER instead if exists.")
93 93
94 (defconst rmail-spool-directory 94 (defconst rmail-spool-directory
95 (if (memq system-type '(hpux usg-unix-v unisoft-unix rtu irix)) 95 (if (memq system-type '(dgux-unix hpux usg-unix-v unisoft-unix rtu
96 irix silicon-graphics-unix))
96 "/usr/mail/" 97 "/usr/mail/"
97 "/usr/spool/mail/") 98 "/usr/spool/mail/")
98 "Name of directory used by system mailer for delivering new mail. 99 "Name of directory used by system mailer for delivering new mail.
99 Its name should end with a slash.") 100 Its name should end with a slash.")
100 101