diff lisp/jit-lock.el @ 76291:7d2b5814cd4e

* 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.
author David Kastrup <dak@gnu.org>
date Sun, 04 Mar 2007 08:41:08 +0000
parents e3694f1cb928
children 9355f9b7bbff 91bf6e05918b
line wrap: on
line diff
--- a/lisp/jit-lock.el	Sun Mar 04 07:38:20 2007 +0000
+++ b/lisp/jit-lock.el	Sun Mar 04 08:41:08 2007 +0000
@@ -74,14 +74,14 @@
   :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)