]> git.eshelyaron.com Git - emacs.git/commitdiff
Doc fixes.
authorGlenn Morris <rgm@gnu.org>
Wed, 24 Feb 2010 03:12:54 +0000 (19:12 -0800)
committerGlenn Morris <rgm@gnu.org>
Wed, 24 Feb 2010 03:12:54 +0000 (19:12 -0800)
* message.el (message-smtpmail-send-it)
(message-send-mail-with-mailclient): Doc fixes.

lisp/gnus/ChangeLog
lisp/gnus/message.el

index a6d5f2040feb5176a011e7021895cc5cd09ffdff..de564bb8c800d70e083aef58e9d8bc89f90b05ab 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 3a8c104b8e52fa092f651c420815e229fc54ad8c..2bf9190a189b3d05e8daab089bb65729de910a9b 100644 (file)
@@ -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))