Changes committed gnus/lisp (ChangeLog message.el)
"Katsumi Yamaoka" <[email protected]> Wed, 24 Feb 2010 11:50:30 +0100
| Newsgroups | gmane.emacs.gnus.commits |
|---|---|
| Message-ID | <[email protected]> |
Modified: ChangeLog message.el 2010-02-24 Glenn Morris <[email protected]> * message.el (message-smtpmail-send-it) (message-send-mail-with-mailclient): Doc fixes. Index: ChangeLog diff -u gnus/lisp/ChangeLog:7.2057 gnus/lisp/ChangeLog:7.2058 --- ChangeLog:7.2057 Tue Feb 16 05:33:25 2010 +++ ChangeLog Wed Feb 24 11:50:30 2010 @@ -1,3 +1,8 @@ +2010-02-24 Glenn Morris <[email protected]> + + * message.el (message-smtpmail-send-it) + (message-send-mail-with-mailclient): Doc fixes. + 2010-02-16 Glenn Morris <[email protected]> * message.el (message-default-mail-headers): Change the default value Index: message.el diff -u gnus/lisp/message.el:7.290 gnus/lisp/message.el:7.291 --- message.el:7.290 Tue Feb 16 05:33:25 2010 +++ message.el Wed Feb 24 11:50:30 2010 @@ -4646,17 +4646,17 @@ (defun message-smtpmail-send-it () "Send the prepared message buffer with `smtpmail-send-it'. -This only differs from `smtpmail-send-it' that this command evaluates -`message-send-mail-hook' just before sending a message. It is useful -if your ISP requires the POP-before-SMTP authentication. See the Gnus -manual for details." +The only difference from `smtpmail-send-it' is that this command +evaluates `message-send-mail-hook' just before sending a message. +It is useful if your ISP requires the POP-before-SMTP +authentication. See the Gnus manual for details." (run-hooks 'message-send-mail-hook) (smtpmail-send-it)) (defun message-send-mail-with-mailclient () "Send the prepared message buffer with `mailclient-send-it'. -This only differs from `smtpmail-send-it' that this command evaluates -`message-send-mail-hook' just before sending a message." +The only difference from `mailclient-send-it' is that this +command evaluates `message-send-mail-hook' just before sending a message." (run-hooks 'message-send-mail-hook) (mailclient-send-it))