diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2011-07-08 19:02:01 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2011-07-08 19:02:01 +0200 |
commit | f042cfd86a8dadc9fa559f102213de09a019c527 (patch) | |
tree | 5ad9e8d7f80cf18a142211e2e3fcf7804d556cdc /lisp/custom.el | |
parent | 3fe4b54936ae48b8d30458bb9cac2912a9ecc09a (diff) | |
download | emacs-f042cfd86a8dadc9fa559f102213de09a019c527.tar.gz emacs-f042cfd86a8dadc9fa559f102213de09a019c527.tar.bz2 emacs-f042cfd86a8dadc9fa559f102213de09a019c527.zip |
* lisp/mail/sendmail.el (send-mail-function): No longer delay custom
initialization.
* lisp/custom.el (custom-initialize-delay): Doc fix.
Diffstat (limited to 'lisp/custom.el')
-rw-r--r-- | lisp/custom.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/custom.el b/lisp/custom.el index a5c0065036a..4f69c741468 100644 --- a/lisp/custom.el +++ b/lisp/custom.el @@ -120,8 +120,10 @@ the :set function. For variables in preloaded files, you can simply use this function for the :initialize property. For autoloaded variables, you will also need to add an autoload stanza calling this -function, and another one setting the standard-value property. -See `send-mail-function' in sendmail.el for an example." +function, and another one setting the standard-value property." + ;; No longer true: + ;; "See `send-mail-function' in sendmail.el for an example." + ;; Until the var is actually initialized, it is kept unbound. ;; This seemed to be at least as good as setting it to an arbitrary ;; value like nil (evaluating `value' is not an option because it |