diff options
| author | Glenn Morris | 2010-02-23 19:12:54 -0800 |
|---|---|---|
| committer | Glenn Morris | 2010-02-23 19:12:54 -0800 |
| commit | daf4b83bd5b70a660ac4899876f7e69a607e48b5 (patch) | |
| tree | ba73d51e014ab4a7ae048cb9b1b9cfbd76b4e16e | |
| parent | ea7bc09d327dd27b8d5da45869d9a67893593a13 (diff) | |
| download | emacs-daf4b83bd5b70a660ac4899876f7e69a607e48b5.tar.gz emacs-daf4b83bd5b70a660ac4899876f7e69a607e48b5.zip | |
Doc fixes.
* message.el (message-smtpmail-send-it)
(message-send-mail-with-mailclient): Doc fixes.
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | 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 @@ | |||
| 1 | 2010-02-24 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * message.el (message-smtpmail-send-it) | ||
| 4 | (message-send-mail-with-mailclient): Doc fixes. | ||
| 5 | |||
| 1 | 2010-02-16 Glenn Morris <rgm@gnu.org> | 6 | 2010-02-16 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * message.el (message-default-mail-headers): Change the default value | 8 | * 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." | |||
| 4684 | 4684 | ||
| 4685 | (defun message-smtpmail-send-it () | 4685 | (defun message-smtpmail-send-it () |
| 4686 | "Send the prepared message buffer with `smtpmail-send-it'. | 4686 | "Send the prepared message buffer with `smtpmail-send-it'. |
| 4687 | This only differs from `smtpmail-send-it' that this command evaluates | 4687 | The only difference from `smtpmail-send-it' is that this command |
| 4688 | `message-send-mail-hook' just before sending a message. It is useful | 4688 | evaluates `message-send-mail-hook' just before sending a message. |
| 4689 | if your ISP requires the POP-before-SMTP authentication. See the Gnus | 4689 | It is useful if your ISP requires the POP-before-SMTP |
| 4690 | manual for details." | 4690 | authentication. See the Gnus manual for details." |
| 4691 | (run-hooks 'message-send-mail-hook) | 4691 | (run-hooks 'message-send-mail-hook) |
| 4692 | (smtpmail-send-it)) | 4692 | (smtpmail-send-it)) |
| 4693 | 4693 | ||
| 4694 | (defun message-send-mail-with-mailclient () | 4694 | (defun message-send-mail-with-mailclient () |
| 4695 | "Send the prepared message buffer with `mailclient-send-it'. | 4695 | "Send the prepared message buffer with `mailclient-send-it'. |
| 4696 | This only differs from `smtpmail-send-it' that this command evaluates | 4696 | The only difference from `mailclient-send-it' is that this |
| 4697 | `message-send-mail-hook' just before sending a message." | 4697 | command evaluates `message-send-mail-hook' just before sending a message." |
| 4698 | (run-hooks 'message-send-mail-hook) | 4698 | (run-hooks 'message-send-mail-hook) |
| 4699 | (mailclient-send-it)) | 4699 | (mailclient-send-it)) |
| 4700 | 4700 | ||