diff lisp/gnus/message.el @ 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 6a11e3b311d8
children a3c102291ce1
line wrap: on
line diff
--- 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))