Add missing autload pieces needed for rmail-spool-directory's delayed init
This commit is contained in:
parent
f8815e4c9b
commit
98e15937be
1 changed files with 9 additions and 0 deletions
|
@ -148,6 +148,13 @@ its character representation and its display representation.")
|
|||
:group 'rmail
|
||||
:version "21.1")
|
||||
|
||||
;;;###autoload
|
||||
(put 'rmail-spool-directory 'standard-value
|
||||
'((cond ((file-exists-p "/var/mail") "/var/mail/")
|
||||
((file-exists-p "/var/spool/mail") "/var/spool/mail/")
|
||||
((memq system-type '(hpux usg-unix-v irix)) "/usr/mail/")
|
||||
(t "/usr/spool/mail/"))))
|
||||
|
||||
;;;###autoload
|
||||
(defcustom rmail-spool-directory
|
||||
(purecopy
|
||||
|
@ -166,6 +173,8 @@ Its name should end with a slash."
|
|||
:type 'directory
|
||||
:group 'rmail)
|
||||
|
||||
;;;###autoload(custom-initialize-delay 'rmail-spool-directory nil)
|
||||
|
||||
(defcustom rmail-movemail-program nil
|
||||
"If non-nil, the file name of the `movemail' program."
|
||||
:group 'rmail-retrieve
|
||||
|
|
Loading…
Add table
Reference in a new issue