From: Katsumi Yamaoka Date: Wed, 24 Feb 2010 10:50:30 +0000 (+0000) Subject: 2010-02-24 Glenn Morris X-Git-Url: http://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=39c8ecc92d0d37c0fdcc99872120a791d9251b2d 2010-02-24 Glenn Morris * message.el (message-smtpmail-send-it) (message-send-mail-with-mailclient): Doc fixes. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8a8c0af34..ed42ba4bc 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/message.el b/lisp/message.el index f7bcb5693..21fb83a2b 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -4646,17 +4646,17 @@ to find out how to use this." (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))