From: Chong Yidong Date: Thu, 13 Jan 2011 04:30:23 +0000 (-0500) Subject: * font-lock.el (font-lock-verbose): Default to nil. X-Git-Tag: emacs-pretest-24.0.90~104^2~618^2~1322^2~236^2~2^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a03b542a784a745f65c3527a1980f1d22a7ad291;p=emacs.git * font-lock.el (font-lock-verbose): Default to nil. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e46bc9ee73a..1dc94bd3106 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-01-13 Chong Yidong + + * font-lock.el (font-lock-verbose): Default to nil. + 2011-01-13 Chong Yidong * simple.el (sendmail-user-agent-compose): Move to sendmail.el. diff --git a/lisp/font-lock.el b/lisp/font-lock.el index fe873297dc2..b10c3d8b9ee 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -276,13 +276,14 @@ decoration for buffers in C++ mode, and level 1 decoration otherwise." (integer :tag "level" 1))))) :group 'font-lock) -(defcustom font-lock-verbose 0 +(defcustom font-lock-verbose nil "If non-nil, means show status messages for buffer fontification. If a number, only buffers greater than this size have fontification messages." :type '(choice (const :tag "never" nil) (other :tag "always" t) (integer :tag "size")) - :group 'font-lock) + :group 'font-lock + :version "24.1") ;; Originally these variable values were face names such as `bold' etc.