changeset 107211:a41886cf3890

Doc fixes. * message.el (message-smtpmail-send-it) (message-send-mail-with-mailclient): Doc fixes.
author Glenn Morris <rgm@gnu.org>
date Tue, 23 Feb 2010 19:12:54 -0800
parents e547a98225c5
children 5b5e4a97bbce 1426214b1d2b 9976fba4d65d
files lisp/gnus/ChangeLog lisp/gnus/message.el
diffstat 2 files changed, 11 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/gnus/ChangeLog	Mon Feb 22 20:38:16 2010 -0800
+++ b/lisp/gnus/ChangeLog	Tue Feb 23 19:12:54 2010 -0800
@@ -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	Mon Feb 22 20:38:16 2010 -0800
+++ b/lisp/gnus/message.el	Tue Feb 23 19:12:54 2010 -0800
@@ -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))