From: Lars Magne Ingebrigtsen Date: Sun, 11 Sep 2011 16:12:42 +0000 (+0200) Subject: (gnus-verbose): Lower default to 6 to get rid of the most egregious messages. X-Git-Tag: emacs-pretest-24.0.90~104^2~92 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=389e85727b565ee9599e011b734de0b9353baee0;p=emacs.git (gnus-verbose): Lower default to 6 to get rid of the most egregious messages. --- 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 @@ +2011-09-11 Lars Magne Ingebrigtsen + + * gnus-util.el (gnus-verbose): Lower default to 6 to get rid of the + most egregious messages. + 2011-09-10 Tetsuo Tsukamoto (tiny change) * 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." (setq i (* 2 i))) i)) -(defcustom gnus-verbose 7 +(defcustom gnus-verbose 6 "*Integer that says how verbose Gnus should be. The higher the number, the more messages Gnus will flash to say what it's doing. At zero, Gnus will be totally mute; at five, Gnus will display most important messages; and at ten, Gnus will keep on jabbering all the time." + :version "24.1" :group 'gnus-start :type 'integer)