# HG changeset patch # User Chong Yidong # Date 1294893023 18000 # Node ID c315834fc2f0592068641bf17b004c0468894144 # Parent 6c6130ccdefdc8d70f38a0fd2cdc86c43eded0cb * font-lock.el (font-lock-verbose): Default to nil. diff -r 6c6130ccdefd -r c315834fc2f0 lisp/ChangeLog --- a/lisp/ChangeLog Wed Jan 12 23:23:41 2011 -0500 +++ b/lisp/ChangeLog Wed Jan 12 23:30:23 2011 -0500 @@ -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 -r 6c6130ccdefd -r c315834fc2f0 lisp/font-lock.el --- a/lisp/font-lock.el Wed Jan 12 23:23:41 2011 -0500 +++ b/lisp/font-lock.el Wed Jan 12 23:30:23 2011 -0500 @@ -276,13 +276,14 @@ (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.