Variable: jit-lock-defer-time

jit-lock-defer-time is a customizable variable defined in jit-lock.el.gz.

Value

nil

Documentation

Idle time after which deferred fontification should take place.

If nil, fontification is not deferred. If 0, then fontification is only deferred while there is input pending.

View in manual

Probably introduced at or before Emacs version 22.1.

Source Code

;; Defined in /usr/src/emacs/lisp/jit-lock.el.gz
(defcustom jit-lock-defer-time nil ;; 0.25
  "Idle time after which deferred fontification should take place.
If nil, fontification is not deferred.
If 0, then fontification is only deferred while there is input pending."
  :type '(choice (const :tag "never" nil)
                 (number :tag "seconds")))