diff options
| author | Miles Bader | 2008-09-25 15:47:30 +0000 |
|---|---|---|
| committer | Miles Bader | 2008-09-25 15:47:30 +0000 |
| commit | eef5ade7a34434b1e05c57482bb685f4a20e3c03 (patch) | |
| tree | a093de7ccb36ce31b95b49f6caed8440f5a59e5b | |
| parent | e52cac880512b377df736dff328243ba2d82be22 (diff) | |
| download | emacs-eef5ade7a34434b1e05c57482bb685f4a20e3c03.tar.gz emacs-eef5ade7a34434b1e05c57482bb685f4a20e3c03.zip | |
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-1431
| -rw-r--r-- | doc/misc/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/misc/message.texi | 2 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 10 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 2 |
4 files changed, 17 insertions, 2 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index 0e83e083383..63d67c66599 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2008-09-25 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * message.texi (Sending Variables): Fixed variable documentation to | ||
| 4 | avoid the "y/n" wording. | ||
| 5 | |||
| 1 | 2008-09-24 Teodor Zlatanov <tzz@lifelogs.com> | 6 | 2008-09-24 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 7 | ||
| 3 | * message.texi (Sending Variables): Added `message-confirm-send' doc. | 8 | * message.texi (Sending Variables): Added `message-confirm-send' doc. |
diff --git a/doc/misc/message.texi b/doc/misc/message.texi index 353089da264..705b3612483 100644 --- a/doc/misc/message.texi +++ b/doc/misc/message.texi | |||
| @@ -2225,7 +2225,7 @@ if @code{nil} let the mailer mail back a message to report errors. | |||
| 2225 | 2225 | ||
| 2226 | @item message-confirm-send | 2226 | @item message-confirm-send |
| 2227 | @vindex message-confirm-send | 2227 | @vindex message-confirm-send |
| 2228 | If non-@code{nil} display a y/n prompt before actually sending the | 2228 | When non-@code{nil}, Gnus will ask for confirmation when sending a |
| 2229 | message. | 2229 | message. |
| 2230 | 2230 | ||
| 2231 | @end table | 2231 | @end table |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index e53a6a52452..1e66d688a23 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,13 @@ | |||
| 1 | 2008-09-25 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * message.el (message-confirm-send): Fixed variable documentation to | ||
| 4 | avoid the "y/n" wording. | ||
| 5 | |||
| 6 | 2008-09-25 Francis Litterio <flitterio@gmail.com> (tiny change) | ||
| 7 | |||
| 8 | * message.el (message-set-auto-save-file-name): Save to a different | ||
| 9 | filename so multiple messages (especially drafts) can be recovered. | ||
| 10 | |||
| 1 | 2008-09-24 Teodor Zlatanov <tzz@lifelogs.com> | 11 | 2008-09-24 Teodor Zlatanov <tzz@lifelogs.com> |
| 2 | 12 | ||
| 3 | * message.el (message-confirm-send): Add appropriate version. | 13 | * message.el (message-confirm-send): Add appropriate version. |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index 3ec15d00831..ad91868fa7a 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -442,7 +442,7 @@ nil means let mailer mail back a message to report errors." | |||
| 442 | :type 'boolean) | 442 | :type 'boolean) |
| 443 | 443 | ||
| 444 | (defcustom message-confirm-send nil | 444 | (defcustom message-confirm-send nil |
| 445 | "Non-nil means when sending a message ask for y/n confirmation." | 445 | "When non-nil, ask for confirmation when sending a message." |
| 446 | :group 'message-sending | 446 | :group 'message-sending |
| 447 | :group 'message-mail | 447 | :group 'message-mail |
| 448 | :version "22.3" ;; No Gnus | 448 | :version "22.3" ;; No Gnus |