aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Magne Ingebrigtsen2011-09-11 18:12:42 +0200
committerLars Magne Ingebrigtsen2011-09-11 18:12:42 +0200
commit389e85727b565ee9599e011b734de0b9353baee0 (patch)
treed67abf2bb3905ecef3b42557313ff5a95e284f0a
parent39d7fed67b49dbc705328dbec87c8d01b6f60349 (diff)
downloademacs-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/ChangeLog5
-rw-r--r--lisp/gnus/gnus-util.el3
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 @@
12011-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
12011-09-10 Tetsuo Tsukamoto <tt.tetsuo.tsukamoto@gmail.com> (tiny change) 62011-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.
476The higher the number, the more messages Gnus will flash to say what 476The higher the number, the more messages Gnus will flash to say what
477it's doing. At zero, Gnus will be totally mute; at five, Gnus will 477it's doing. At zero, Gnus will be totally mute; at five, Gnus will
478display most important messages; and at ten, Gnus will keep on 478display most important messages; and at ten, Gnus will keep on
479jabbering all the time." 479jabbering all the time."
480 :version "24.1"
480 :group 'gnus-start 481 :group 'gnus-start
481 :type 'integer) 482 :type 'integer)
482 483