Mercurial > emacs
changeset 112200:c315834fc2f0
* font-lock.el (font-lock-verbose): Default to nil.
author | Chong Yidong <cyd@stupidchicken.com> |
---|---|
date | Wed, 12 Jan 2011 23:30:23 -0500 |
parents | 6c6130ccdefd |
children | eb41c4d6654d 1d46a03d3486 |
files | lisp/ChangeLog lisp/font-lock.el |
diffstat | 2 files changed, 7 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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 <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.
--- 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.