Variable: lazy-lock-defer-time
lazy-lock-defer-time is a customizable variable defined in
lazy-lock.el.gz.
Value
0.25
Documentation
Time in seconds to delay before beginning deferred fontification.
Deferred fontification occurs if there is no input within this time.
If nil, means fontification is never deferred, regardless of the values of the
variables lazy-lock-defer-on-the-fly, lazy-lock-defer-on-scrolling and
lazy-lock-defer-contextually.
The value of this variable is used when Lazy Lock mode is turned on.
Probably introduced at or before Emacs version 20.1.
Source Code
;; Defined in /usr/src/emacs/lisp/obsolete/lazy-lock.el.gz
(defcustom lazy-lock-defer-time 0.25
"Time in seconds to delay before beginning deferred fontification.
Deferred fontification occurs if there is no input within this time.
If nil, means fontification is never deferred, regardless of the values of the
variables `lazy-lock-defer-on-the-fly', `lazy-lock-defer-on-scrolling' and
`lazy-lock-defer-contextually'.
The value of this variable is used when Lazy Lock mode is turned on."
:type '(choice (const :tag "never" nil)
(number :tag "seconds")))