diff options
| -rw-r--r-- | doc/misc/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/misc/gnus.texi | 7 | ||||
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-agent.el | 3 |
4 files changed, 16 insertions, 3 deletions
diff --git a/doc/misc/ChangeLog b/doc/misc/ChangeLog index c77e1f1c847..f11d65acc79 100644 --- a/doc/misc/ChangeLog +++ b/doc/misc/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-06-07 Teodor Zlatanov <tzz@lifelogs.com> | ||
| 2 | |||
| 3 | * gnus.texi (Interactive): Explain effect of gnus-expert-user better. | ||
| 4 | |||
| 1 | 2010-05-26 Michael Albinus <michael.albinus@gmx.de> | 5 | 2010-05-26 Michael Albinus <michael.albinus@gmx.de> |
| 2 | 6 | ||
| 3 | * eshell.texi (Built-ins): Describe, how to disable a built-in command | 7 | * eshell.texi (Built-ins): Describe, how to disable a built-in command |
diff --git a/doc/misc/gnus.texi b/doc/misc/gnus.texi index 585c4d6bcb8..3ef173c8db0 100644 --- a/doc/misc/gnus.texi +++ b/doc/misc/gnus.texi | |||
| @@ -22906,8 +22906,11 @@ default. | |||
| 22906 | @item gnus-expert-user | 22906 | @item gnus-expert-user |
| 22907 | @vindex gnus-expert-user | 22907 | @vindex gnus-expert-user |
| 22908 | If this variable is non-@code{nil}, you will seldom be asked any | 22908 | If this variable is non-@code{nil}, you will seldom be asked any |
| 22909 | questions by Gnus. It will simply assume you know what you're doing, no | 22909 | questions by Gnus. It will simply assume you know what you're doing, |
| 22910 | matter how strange. | 22910 | no matter how strange. For example, quitting Gnus, exiting a group |
| 22911 | without an update, catching up with a group, deleting expired | ||
| 22912 | articles, and replying by mail to a news message will not require | ||
| 22913 | confirmation. | ||
| 22911 | 22914 | ||
| 22912 | @item gnus-interactive-catchup | 22915 | @item gnus-interactive-catchup |
| 22913 | @vindex gnus-interactive-catchup | 22916 | @vindex gnus-interactive-catchup |
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index c90e7c7a9eb..3ab4ed98aca 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2010-06-07 Teemu Likonen <tlikonen@iki.fi> (tiny change) | ||
| 2 | |||
| 3 | * gnus-agent.el (gnus-agent-expire-unagentized-dirs): Don't ask about | ||
| 4 | deleting unused directories when gnus-expert-user is t. | ||
| 5 | |||
| 1 | 2010-06-02 Katsumi Yamaoka <yamaoka@jpl.org> | 6 | 2010-06-02 Katsumi Yamaoka <yamaoka@jpl.org> |
| 2 | 7 | ||
| 3 | * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query | 8 | * gnus-art.el (gnus-article-browse-delete-temp-files): Don't make query |
diff --git a/lisp/gnus/gnus-agent.el b/lisp/gnus/gnus-agent.el index 17f1d0cdb1f..edc4e0f3bef 100644 --- a/lisp/gnus/gnus-agent.el +++ b/lisp/gnus/gnus-agent.el | |||
| @@ -3634,7 +3634,8 @@ articles in every agentized group? ")) | |||
| 3634 | deleting them?"))) | 3634 | deleting them?"))) |
| 3635 | (while to-remove | 3635 | (while to-remove |
| 3636 | (let ((dir (pop to-remove))) | 3636 | (let ((dir (pop to-remove))) |
| 3637 | (if (gnus-y-or-n-p (format "Delete %s? " dir)) | 3637 | (if (or gnus-expert-user |
| 3638 | (gnus-y-or-n-p (format "Delete %s? " dir))) | ||
| 3638 | (let* (delete-recursive | 3639 | (let* (delete-recursive |
| 3639 | files f | 3640 | files f |
| 3640 | (delete-recursive | 3641 | (delete-recursive |