]> git.eshelyaron.com Git - emacs.git/commitdiff
* font-lock.el (font-lock-verbose): Default to nil.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 13 Jan 2011 04:30:23 +0000 (23:30 -0500)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 13 Jan 2011 04:30:23 +0000 (23:30 -0500)
lisp/ChangeLog
lisp/font-lock.el

index e46bc9ee73ac55569eef700eb9be3cadeed977b2..1dc94bd3106444f7c9b50ea34cd7f0740c177278 100644 (file)
@@ -1,3 +1,7 @@
+2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
+
+       * font-lock.el (font-lock-verbose): Default to nil.
+
 2011-01-13  Chong Yidong  <cyd@stupidchicken.com>
 
        * simple.el (sendmail-user-agent-compose): Move to sendmail.el.
index fe873297dc2e7cf0efc49e89ed8b58f262c4acbb..b10c3d8b9eeb663f0a79e68be107c75ad555a874 100644 (file)
@@ -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")
 \f
 
 ;; Originally these variable values were face names such as `bold' etc.