diff options
| author | Juanma Barranquero | 2010-03-22 16:49:52 +0100 |
|---|---|---|
| committer | Juanma Barranquero | 2010-03-22 16:49:52 +0100 |
| commit | 2b8f62e98615abf8f6d0dae77e37ff7cb01e91b7 (patch) | |
| tree | 131c8aec7045c1f74b99b68c1089a410aa433afd /lisp | |
| parent | d120008778dc12f8b64322f0c4577ad389d3d009 (diff) | |
| download | emacs-2b8f62e98615abf8f6d0dae77e37ff7cb01e91b7.tar.gz emacs-2b8f62e98615abf8f6d0dae77e37ff7cb01e91b7.zip | |
Fix typos in Gnus.
* message.el (message-interactive): Doc fix.
(message-qmail-inject-args): Reflow.
(message-kill-to-signature): Fix typo in docstring.
* smiley.el (smiley-buffer): Fix typo in docstring.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/gnus/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 8 | ||||
| -rw-r--r-- | lisp/gnus/smiley.el | 4 |
3 files changed, 14 insertions, 6 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 0a6a6a888bd..10185007bf6 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2010-03-22 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * message.el (message-interactive): Doc fix. | ||
| 4 | (message-qmail-inject-args): Reflow. | ||
| 5 | (message-kill-to-signature): Fix typo in docstring. | ||
| 6 | |||
| 7 | * smiley.el (smiley-buffer): Fix typo in docstring. | ||
| 8 | |||
| 1 | 2010-02-26 Glenn Morris <rgm@gnu.org> | 9 | 2010-02-26 Glenn Morris <rgm@gnu.org> |
| 2 | 10 | ||
| 3 | * message.el (message-send-mail-function): Change the default, so that | 11 | * message.el (message-send-mail-function): Change the default, so that |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index d255e3410bd..f2a3f921cdb 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -440,7 +440,7 @@ whitespace)." | |||
| 440 | ;; Default to the value of `mail-interactive', available in all Emacsen | 440 | ;; Default to the value of `mail-interactive', available in all Emacsen |
| 441 | ;; that Gnus supports. | 441 | ;; that Gnus supports. |
| 442 | "Non-nil means when sending a message wait for and display errors. | 442 | "Non-nil means when sending a message wait for and display errors. |
| 443 | nil means let mailer mail back a message to report errors." | 443 | A value of nil means let mailer mail back a message to report errors." |
| 444 | :version "23.2" | 444 | :version "23.2" |
| 445 | :group 'message-sending | 445 | :group 'message-sending |
| 446 | :group 'message-mail | 446 | :group 'message-mail |
| @@ -864,8 +864,8 @@ If this is nil, use `user-mail-address'. If it is the symbol | |||
| 864 | 864 | ||
| 865 | (defcustom message-qmail-inject-args nil | 865 | (defcustom message-qmail-inject-args nil |
| 866 | "Arguments passed to qmail-inject programs. | 866 | "Arguments passed to qmail-inject programs. |
| 867 | This should be a list of strings, one string for each argument. It | 867 | This should be a list of strings, one string for each argument. |
| 868 | may also be a function. | 868 | It may also be a function. |
| 869 | 869 | ||
| 870 | For e.g., if you wish to set the envelope sender address so that bounces | 870 | For e.g., if you wish to set the envelope sender address so that bounces |
| 871 | go to the right place or to deal with listserv's usage of that address, you | 871 | go to the right place or to deal with listserv's usage of that address, you |
| @@ -3253,7 +3253,7 @@ or in the synonym headers, defined by `message-header-synonyms'." | |||
| 3253 | 3253 | ||
| 3254 | (defun message-kill-to-signature (&optional arg) | 3254 | (defun message-kill-to-signature (&optional arg) |
| 3255 | "Kill all text up to the signature. | 3255 | "Kill all text up to the signature. |
| 3256 | If a numberic argument or prefix arg is given, leave that number | 3256 | If a numeric argument or prefix arg is given, leave that number |
| 3257 | of lines before the signature intact." | 3257 | of lines before the signature intact." |
| 3258 | (interactive "P") | 3258 | (interactive "P") |
| 3259 | (save-excursion | 3259 | (save-excursion |
diff --git a/lisp/gnus/smiley.el b/lisp/gnus/smiley.el index 8e79dd58125..fbe71e7725f 100644 --- a/lisp/gnus/smiley.el +++ b/lisp/gnus/smiley.el | |||
| @@ -196,8 +196,8 @@ A list of images is returned." | |||
| 196 | 196 | ||
| 197 | ;;;###autoload | 197 | ;;;###autoload |
| 198 | (defun smiley-buffer (&optional buffer) | 198 | (defun smiley-buffer (&optional buffer) |
| 199 | "Run `smiley-region' at the buffer, specified in the argument or | 199 | "Run `smiley-region' at the BUFFER, specified in the argument or |
| 200 | interactively. If there's no argument, do it at the current buffer" | 200 | interactively. If there's no argument, do it at the current buffer." |
| 201 | (interactive "bBuffer to run smiley-region: ") | 201 | (interactive "bBuffer to run smiley-region: ") |
| 202 | (save-excursion | 202 | (save-excursion |
| 203 | (if buffer | 203 | (if buffer |