From: Glenn Morris Date: Fri, 26 Feb 2010 04:40:03 +0000 (-0800) Subject: Fix initialization of send-mail-function option. X-Git-Tag: emacs-pretest-23.1.93~5^2~3 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cdbf910017670adc503318b8b9407ef85a7ad2ba;p=emacs.git Fix initialization of send-mail-function option. * mail/sendmail.el (send-mail-function): Autoload the call to custom-initialize-delay, not otherwise preserved in loaddefs.el. (Needed since 2009-09-13 change to startup.el.) See http://lists.gnu.org/archive/html/emacs-devel/2010-02/msg00533.html --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 59bd441f0d8..d91d95e5313 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2010-02-26 Glenn Morris + + * mail/sendmail.el (send-mail-function): Autoload the call + to custom-initialize-delay, not otherwise preserved in loaddefs.el. + 2010-02-25 Alan Mackenzie * progmodes/cc-engine.el (c-clear-<-pair-props) diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index da8fe85da82..4cf6cb812bd 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -170,6 +170,8 @@ This is used by the default mail-sending commands. See also :initialize 'custom-initialize-delay :group 'sendmail) +;;;###autoload(custom-initialize-delay 'send-mail-function nil) + ;;;###autoload (defcustom mail-header-separator (purecopy "--text follows this line--") "Line used to separate headers from text in messages being composed."