diff options
| author | Lars Magne Ingebrigtsen | 2011-09-11 18:12:42 +0200 |
|---|---|---|
| committer | Lars Magne Ingebrigtsen | 2011-09-11 18:12:42 +0200 |
| commit | 389e85727b565ee9599e011b734de0b9353baee0 (patch) | |
| tree | d67abf2bb3905ecef3b42557313ff5a95e284f0a | |
| parent | 39d7fed67b49dbc705328dbec87c8d01b6f60349 (diff) | |
| download | emacs-389e85727b565ee9599e011b734de0b9353baee0.tar.gz emacs-389e85727b565ee9599e011b734de0b9353baee0.zip | |
(gnus-verbose): Lower default to 6 to get rid of the most egregious messages.
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/gnus-util.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 89a83543eb0..e3e141124c4 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org> | ||
| 2 | |||
| 3 | * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the | ||
| 4 | most egregious messages. | ||
| 5 | |||
| 1 | 2011-09-10 Tetsuo Tsukamoto <tt.tetsuo.tsukamoto@gmail.com> (tiny change) | 6 | 2011-09-10 Tetsuo Tsukamoto <tt.tetsuo.tsukamoto@gmail.com> (tiny change) |
| 2 | 7 | ||
| 3 | * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking | 8 | * nnrss.el (nnrss-retrieve-groups): Decode the charset before looking |
diff --git a/lisp/gnus/gnus-util.el b/lisp/gnus/gnus-util.el index 34953611966..e9d6ba423fd 100644 --- a/lisp/gnus/gnus-util.el +++ b/lisp/gnus/gnus-util.el | |||
| @@ -471,12 +471,13 @@ Cache the result as a text property stored in DATE." | |||
| 471 | (setq i (* 2 i))) | 471 | (setq i (* 2 i))) |
| 472 | i)) | 472 | i)) |
| 473 | 473 | ||
| 474 | (defcustom gnus-verbose 7 | 474 | (defcustom gnus-verbose 6 |
| 475 | "*Integer that says how verbose Gnus should be. | 475 | "*Integer that says how verbose Gnus should be. |
| 476 | The higher the number, the more messages Gnus will flash to say what | 476 | The higher the number, the more messages Gnus will flash to say what |
| 477 | it's doing. At zero, Gnus will be totally mute; at five, Gnus will | 477 | it's doing. At zero, Gnus will be totally mute; at five, Gnus will |
| 478 | display most important messages; and at ten, Gnus will keep on | 478 | display most important messages; and at ten, Gnus will keep on |
| 479 | jabbering all the time." | 479 | jabbering all the time." |
| 480 | :version "24.1" | ||
| 480 | :group 'gnus-start | 481 | :group 'gnus-start |
| 481 | :type 'integer) | 482 | :type 'integer) |
| 482 | 483 | ||