Variable: font-lock-verbose
font-lock-verbose is a customizable variable defined in
font-lock.el.gz.
Value
nil
Documentation
If non-nil, means show status messages for buffer fontification.
If a number, only buffers greater than this size have fontification messages.
This variable was added, or its default value changed, in Emacs 24.1.
Probably introduced at or before Emacs version 20.1.
Source Code
;; Defined in /usr/src/emacs/lisp/font-lock.el.gz
(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)
(integer :tag "size")
(other :tag "always" t))
:group 'font-lock
:version "24.1")