2010-02-24 Glenn Morris <rgm@gnu.org>
authorKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 24 Feb 2010 10:50:30 +0000 (10:50 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Wed, 24 Feb 2010 10:50:30 +0000 (10:50 +0000)
* message.el (message-smtpmail-send-it)
(message-send-mail-with-mailclient): Doc fixes.

lisp/ChangeLog
lisp/message.el

index 8a8c0af..ed42ba4 100644 (file)
@@ -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
index f7bcb56..21fb83a 100644 (file)
@@ -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))