diff options
author | David Kastrup <dak@gnu.org> | 2007-03-04 08:41:08 +0000 |
---|---|---|
committer | David Kastrup <dak@gnu.org> | 2007-03-04 08:41:08 +0000 |
commit | d0483d25c034c38a8c6f0d718e9780c50e6ba03a (patch) | |
tree | ef390d6fa52d01d8c72746f9b1676aaebb3c56fc /lisp/jit-lock.el | |
parent | 7373bc42b1cd9cf75dc26e71907f2cffe719f789 (diff) | |
download | emacs-d0483d25c034c38a8c6f0d718e9780c50e6ba03a.tar.gz |
* NEWS (fontification): Mention that the new default for
jit-lock-stealth-time is now nil.
* jit-lock.el (jit-lock-stealth-time): Change default to nil.
Preserve 16 as default value for "seconds" when customizing.
Diffstat (limited to 'lisp/jit-lock.el')
-rw-r--r-- | lisp/jit-lock.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/jit-lock.el b/lisp/jit-lock.el index 958bb679832..0471edb7891 100644 --- a/lisp/jit-lock.el +++ b/lisp/jit-lock.el @@ -74,14 +74,14 @@ This variable controls both display-time and stealth fontification." :group 'jit-lock) -(defcustom jit-lock-stealth-time 16 +(defcustom jit-lock-stealth-time nil "*Time in seconds to wait before beginning stealth fontification. Stealth fontification occurs if there is no input within this time. If nil, stealth fontification is never performed. The value of this variable is used when JIT Lock mode is turned on." :type '(choice (const :tag "never" nil) - (number :tag "seconds")) + (number :tag "seconds" :value 16)) :group 'jit-lock) |