* font-lock.el (font-lock-verbose): Default to nil.

This commit is contained in:
Chong Yidong 2011-01-12 23:30:23 -05:00
parent 25ca2e6140
commit a03b542a78
2 changed files with 7 additions and 2 deletions

View 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.

View 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")
;; Originally these variable values were face names such as `bold' etc.