comparison 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
comparison
equal deleted inserted replaced
76290:d5094572b487 76291:7d2b5814cd4e
72 This variable controls both display-time and stealth fontification." 72 This variable controls both display-time and stealth fontification."
73 :type 'integer 73 :type 'integer
74 :group 'jit-lock) 74 :group 'jit-lock)
75 75
76 76
77 (defcustom jit-lock-stealth-time 16 77 (defcustom jit-lock-stealth-time nil
78 "*Time in seconds to wait before beginning stealth fontification. 78 "*Time in seconds to wait before beginning stealth fontification.
79 Stealth fontification occurs if there is no input within this time. 79 Stealth fontification occurs if there is no input within this time.
80 If nil, stealth fontification is never performed. 80 If nil, stealth fontification is never performed.
81 81
82 The value of this variable is used when JIT Lock mode is turned on." 82 The value of this variable is used when JIT Lock mode is turned on."
83 :type '(choice (const :tag "never" nil) 83 :type '(choice (const :tag "never" nil)
84 (number :tag "seconds")) 84 (number :tag "seconds" :value 16))
85 :group 'jit-lock) 85 :group 'jit-lock)
86 86
87 87
88 (defcustom jit-lock-stealth-nice 0.5 88 (defcustom jit-lock-stealth-nice 0.5
89 "*Time in seconds to pause between chunks of stealth fontification. 89 "*Time in seconds to pause between chunks of stealth fontification.