mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-23 07:19:15 +00:00
Add missing autload pieces needed for rmail-spool-directory's delayed init
This commit is contained in:
parent
f8815e4c9b
commit
98e15937be
@ -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…
Reference in New Issue
Block a user