Mercurial > emacs
changeset 107287:1426214b1d2b
Merge from mainline.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Wed, 24 Feb 2010 10:47:10 +0000 |
parents | 9e97e6c8e8a2 (current diff) a41886cf3890 (diff) |
children | 2bdc8dbc5648 |
files | |
diffstat | 2 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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 <rgm@gnu.org> + + * message.el (message-smtpmail-send-it) + (message-send-mail-with-mailclient): Doc fixes. + 2010-02-16 Glenn Morris <rgm@gnu.org> * message.el (message-default-mail-headers): Change the default value
--- 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))