From daf4b83bd5b70a660ac4899876f7e69a607e48b5 Mon Sep 17 00:00:00 2001 From: Glenn Morris Date: Tue, 23 Feb 2010 19:12:54 -0800 Subject: [PATCH] Doc fixes. * message.el (message-smtpmail-send-it) (message-send-mail-with-mailclient): Doc fixes. --- lisp/gnus/ChangeLog | 5 +++++ lisp/gnus/message.el | 12 ++++++------ 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index a6d5f2040fe..de564bb8c80 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/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/gnus/message.el b/lisp/gnus/message.el index 3a8c104b8e5..2bf9190a189 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el @@ -4684,17 +4684,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)) -- 2.11.4.GIT