# HG changeset patch # User Katsumi Yamaoka # Date 1267008430 0 # Node ID 1426214b1d2bf85c2533e7b1f1d99c46bd57280a # Parent 9e97e6c8e8a20b0bae3c18fd4837d0d188550977# Parent a41886cf38903f7a357ce3211351d406142f283d Merge from mainline. diff -r 9e97e6c8e8a2 -r 1426214b1d2b lisp/gnus/ChangeLog --- a/lisp/gnus/ChangeLog Tue Feb 23 21:58:05 2010 +0000 +++ b/lisp/gnus/ChangeLog Wed Feb 24 10:47:10 2010 +0000 @@ -1,3 +1,8 @@ +2010-02-24 Glenn Morris + + * message.el (message-smtpmail-send-it) + (message-send-mail-with-mailclient): Doc fixes. + 2010-02-16 Glenn Morris * message.el (message-default-mail-headers): Change the default value diff -r 9e97e6c8e8a2 -r 1426214b1d2b lisp/gnus/message.el --- a/lisp/gnus/message.el Tue Feb 23 21:58:05 2010 +0000 +++ b/lisp/gnus/message.el Wed Feb 24 10:47:10 2010 +0000 @@ -4684,17 +4684,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))