Don't require 'w3 and 'url unprotected.
[bpt/emacs.git] / lisp / lazy-lock.el
1 ;;; lazy-lock.el --- Lazy demand-driven fontification for fast Font Lock mode.
2
3 ;; Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc.
4
5 ;; Author: Simon Marshall <simon@gnu.org>
6 ;; Keywords: faces files
7 ;; Version: 2.10
8
9 ;;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;; Purpose:
29 ;;
30 ;; Lazy Lock mode is a Font Lock support mode.
31 ;; It makes visiting buffers in Font Lock mode faster by making fontification
32 ;; be demand-driven, deferred and stealthy, so that fontification only occurs
33 ;; when, and where, necessary.
34 ;;
35 ;; See caveats and feedback below.
36 ;; See also the fast-lock package. (But don't use them at the same time!)
37
38 ;; Installation:
39 ;;
40 ;; Put in your ~/.emacs:
41 ;;
42 ;; (setq font-lock-support-mode 'lazy-lock-mode)
43 ;;
44 ;; Start up a new Emacs and use font-lock as usual (except that you can use the
45 ;; so-called "gaudier" fontification regexps on big files without frustration).
46 ;;
47 ;; In a buffer (which has `font-lock-mode' enabled) which is at least
48 ;; `lazy-lock-minimum-size' characters long, buffer fontification will not
49 ;; occur and only the visible portion of the buffer will be fontified. Motion
50 ;; around the buffer will fontify those visible portions not previously
51 ;; fontified. If stealth fontification is enabled, buffer fontification will
52 ;; occur in invisible parts of the buffer after `lazy-lock-stealth-time'
53 ;; seconds of idle time. If on-the-fly fontification is deferred, on-the-fly
54 ;; fontification will occur after `lazy-lock-defer-time' seconds of idle time.
55
56 ;; User-visible differences with version 1:
57 ;;
58 ;; - Version 2 can defer on-the-fly fontification. Therefore you need not, and
59 ;; should not, use defer-lock.el with this version of lazy-lock.el.
60 ;;
61 ;; A number of variables have changed meaning:
62 ;;
63 ;; - A value of nil for the variable `lazy-lock-minimum-size' means never turn
64 ;; on demand-driven fontification. In version 1 this meant always turn on
65 ;; demand-driven fontification. If you really want demand-driven fontification
66 ;; regardless of buffer size, set this variable to 0.
67 ;;
68 ;; - The variable `lazy-lock-stealth-lines' cannot have a nil value. In
69 ;; version 1 this meant use `window-height' as the maximum number of lines to
70 ;; fontify as a stealth chunk. This makes no sense; stealth fontification is
71 ;; of a buffer, not a window.
72
73 ;; Implementation differences with version 1:
74 ;;
75 ;; - Version 1 of lazy-lock.el is a bit of a hack. Version 1 demand-driven
76 ;; fontification, the core feature of lazy-lock.el, is implemented by placing a
77 ;; function on `post-command-hook'. This function fontifies where necessary,
78 ;; i.e., where a window scroll has occurred. However, there are a number of
79 ;; problems with using `post-command-hook':
80 ;;
81 ;; (a) As the name suggests, `post-command-hook' is run after every command,
82 ;; i.e., frequently and regardless of whether scrolling has occurred.
83 ;; (b) Scrolling can occur during a command, when `post-command-hook' is not
84 ;; run, i.e., it is not necessarily run after scrolling has occurred.
85 ;; (c) When `post-command-hook' is run, there is nothing to suggest where
86 ;; scrolling might have occurred, i.e., which windows have scrolled.
87 ;;
88 ;; Thus lazy-lock.el's function is called almost as often as possible, usually
89 ;; when it need not be called, yet it is not always called when it is needed.
90 ;; Also, lazy-lock.el's function must check each window to see if a scroll has
91 ;; occurred there. Worse still, lazy-lock.el's function must fontify a region
92 ;; twice as large as necessary to make sure the window is completely fontified.
93 ;; Basically, `post-command-hook' is completely inappropriate for lazy-lock.el.
94 ;;
95 ;; Ideally, we want to attach lazy-lock.el's function to a hook that is run
96 ;; only when scrolling occurs, e.g., `window-start' has changed, and tells us
97 ;; as much information as we need, i.e., the window and its new buffer region.
98 ;; Richard Stallman implemented a `window-scroll-functions' for Emacs 19.30.
99 ;; Functions on it are run when `window-start' has changed, and are supplied
100 ;; with the window and the window's new `window-start' position. (It would be
101 ;; better if it also supplied the window's new `window-end' position, but that
102 ;; is calculated as part of the redisplay process, and the functions on
103 ;; `window-scroll-functions' are run before redisplay has finished.) Thus, the
104 ;; hook deals with the above problems (a), (b) and (c).
105 ;;
106 ;; If only life was that easy. Version 2 demand-driven fontification is mostly
107 ;; implemented by placing a function on `window-scroll-functions'. However,
108 ;; not all scrolling occurs when `window-start' has changed. A change in
109 ;; window size, e.g., via C-x 1, or a significant deletion, e.g., of a number
110 ;; of lines, causes text previously invisible (i.e., after `window-end') to
111 ;; become visible without changing `window-start'. Arguably, these events are
112 ;; not scrolling events, but fontification must occur for lazy-lock.el to work.
113 ;; Hooks `window-size-change-functions' and `redisplay-end-trigger-functions'
114 ;; were added for these circumstances.
115 ;;
116 ;; (Ben Wing thinks these hooks are "horribly horribly kludgy", and implemented
117 ;; a `pre-idle-hook', a `mother-of-all-post-command-hooks', for XEmacs 19.14.
118 ;; He then hacked up a version 1 lazy-lock.el to use `pre-idle-hook' rather
119 ;; than `post-command-hook'. Whereas functions on `post-command-hook' are
120 ;; called almost as often as possible, functions on `pre-idle-hook' really are
121 ;; called as often as possible, even when the mouse moves and, on some systems,
122 ;; while XEmacs is idle. Thus, the hook deals with the above problem (b), but
123 ;; unfortunately it makes (a) worse and does not address (c) at all.
124 ;;
125 ;; I freely admit that `redisplay-end-trigger-functions' and, to a much lesser
126 ;; extent, `window-size-change-functions' are not pretty. However, I feel that
127 ;; a `window-scroll-functions' feature is cleaner than a `pre-idle-hook', and
128 ;; the result is faster and smaller, less intrusive and more targeted, code.
129 ;; Since `pre-idle-hook' is pretty much like `post-command-hook', there is no
130 ;; point in making this version of lazy-lock.el work with it. Anyway, that's
131 ;; Lit 30 of my humble opinion.
132 ;;
133 ;; - Version 1 stealth fontification is also implemented by placing a function
134 ;; on `post-command-hook'. This function waits for a given amount of time,
135 ;; and, if Emacs remains idle, fontifies where necessary. Again, there are a
136 ;; number of problems with using `post-command-hook':
137 ;;
138 ;; (a) Functions on `post-command-hook' are run sequentially, so this function
139 ;; can interfere with other functions on the hook, and vice versa.
140 ;; (b) This function waits for a given amount of time, so it can interfere with
141 ;; various features that are dealt with by Emacs after a command, e.g.,
142 ;; region highlighting, asynchronous updating and keystroke echoing.
143 ;; (c) Fontification may be required during a command, when `post-command-hook'
144 ;; is not run. (Version 2 deferred fontification only.)
145 ;;
146 ;; Again, `post-command-hook' is completely inappropriate for lazy-lock.el.
147 ;; Richard Stallman and Morten Welinder implemented internal Timers and Idle
148 ;; Timers for Emacs 19.31. Functions can be run independently at given times
149 ;; or after given amounts of idle time. Thus, the feature deals with the above
150 ;; problems (a), (b) and (c). Version 2 deferral and stealth are implemented
151 ;; by functions on Idle Timers. (A function on XEmacs' `pre-idle-hook' is
152 ;; similar to an Emacs Idle Timer function with a fixed zero second timeout.)
153
154 ;; - Version 1 has the following problems (relative to version 2):
155 ;;
156 ;; (a) It is slow when it does its job.
157 ;; (b) It does not always do its job when it should.
158 ;; (c) It slows all interaction (when it doesn't need to do its job).
159 ;; (d) It interferes with other package functions on `post-command-hook'.
160 ;; (e) It interferes with Emacs things within the read-eval loop.
161 ;;
162 ;; Ben's hacked-up lazy-lock.el 1.14 almost solved (b) but made (c) worse.
163 ;;
164 ;; - Version 2 has the following additional features (relative to version 1):
165 ;;
166 ;; (a) It can defer fontification (both on-the-fly and on-scrolling).
167 ;; (b) It can fontify contextually (syntactically true on-the-fly).
168
169 ;; Caveats:
170 ;;
171 ;; Lazy Lock mode does not work efficiently with Outline mode.
172 ;; This is because when in Outline mode, although text may be not visible to
173 ;; you in the window, the text is visible to Emacs Lisp code (not surprisingly)
174 ;; and Lazy Lock fontifies it mercilessly. Maybe it will be fixed one day.
175 ;;
176 ;; Because buffer text is not necessarily fontified, other packages that expect
177 ;; buffer text to be fontified in Font Lock mode either might not work as
178 ;; expected, or might not display buffer text as expected. An example of the
179 ;; latter is `occur', which copies lines of buffer text into another buffer.
180 ;;
181 ;; In Emacs 19.30, Lazy Lock mode does not ensure that an existing buffer is
182 ;; fontified if it is made visible via a minibuffer-less command that replaces
183 ;; an existing window's buffer (e.g., via the Buffers menu). Upgrade!
184 ;;
185 ;; In Emacs 19.30, Lazy Lock mode does not work well with Transient Mark mode
186 ;; or modes based on Comint mode (e.g., Shell mode), and also interferes with
187 ;; the echoing of keystrokes in the minibuffer. This is because of the way
188 ;; deferral and stealth have to be implemented for Emacs 19.30. Upgrade!
189 ;;
190 ;; Currently XEmacs does not have the features to support this version of
191 ;; lazy-lock.el. Maybe it will one day.
192 \f
193 ;; History:
194 ;;
195 ;; 1.15--2.00:
196 ;; - Rewrite for Emacs 19.30 and the features rms added to support lazy-lock.el
197 ;; so that it could work correctly and efficiently.
198 ;; - Many thanks to those who reported bugs, fixed bugs, made suggestions or
199 ;; otherwise contributed in the version 1 cycle; Jari Aalto, Kevin Broadey,
200 ;; Ulrik Dickow, Bill Dubuque, Bob Glickstein, Boris Goldowsky,
201 ;; Jonas Jarnestrom, David Karr, Michael Kifer, Erik Naggum, Rick Sladkey,
202 ;; Jim Thompson, Ben Wing, Ilya Zakharevich, and Richard Stallman.
203 ;; 2.00--2.01:
204 ;; - Made `lazy-lock-fontify-after-command' always `sit-for' and so redisplay
205 ;; - Use `buffer-name' not `buffer-live-p' (Bill Dubuque hint)
206 ;; - Made `lazy-lock-install' do `add-to-list' not `setq' of `current-buffer'
207 ;; - Made `lazy-lock-fontify-after-install' loop over buffer list
208 ;; - Made `lazy-lock-arrange-before-change' to arrange `window-end' triggering
209 ;; - Made `lazy-lock-let-buffer-state' wrap both `befter-change-functions'
210 ;; - Made `lazy-lock-fontify-region' do `condition-case' (Hyman Rosen report)
211 ;; 2.01--2.02:
212 ;; - Use `buffer-live-p' as `buffer-name' can barf (Richard Stanton report)
213 ;; - Made `lazy-lock-install' set `font-lock-fontified' (Kevin Davidson report)
214 ;; - Made `lazy-lock-install' add hooks only if needed
215 ;; - Made `lazy-lock-unstall' add `font-lock-after-change-function' if needed
216 ;; 2.02--2.03:
217 ;; - Made `lazy-lock-fontify-region' do `condition-case' for `quit' too
218 ;; - Made `lazy-lock-mode' respect the value of `font-lock-inhibit-thing-lock'
219 ;; - Added `lazy-lock-after-unfontify-buffer'
220 ;; - Removed `lazy-lock-fontify-after-install' hack
221 ;; - Made `lazy-lock-fontify-after-scroll' not `set-buffer' to `window-buffer'
222 ;; - Made `lazy-lock-fontify-after-trigger' not `set-buffer' to `window-buffer'
223 ;; - Made `lazy-lock-fontify-after-idle' be interruptible (Scott Burson hint)
224 ;; 2.03--2.04:
225 ;; - Rewrite for Emacs 19.31 idle timers
226 ;; - Renamed `buffer-windows' to `get-buffer-window-list'
227 ;; - Removed `buffer-live-p'
228 ;; - Made `lazy-lock-defer-after-change' always save `current-buffer'
229 ;; - Made `lazy-lock-fontify-after-defer' just process buffers
230 ;; - Made `lazy-lock-install-hooks' add hooks correctly (Kevin Broadey report)
231 ;; - Made `lazy-lock-install' cope if `lazy-lock-defer-time' is a list
232 ;; 2.04--2.05:
233 ;; - Rewrite for Common Lisp macros
234 ;; - Added `do-while' macro
235 ;; - Renamed `lazy-lock-let-buffer-state' macro to `save-buffer-state'
236 ;; - Returned `lazy-lock-fontify-after-install' hack (Darren Hall hint)
237 ;; - Added `lazy-lock-defer-on-scrolling' functionality (Scott Byer hint)
238 ;; - Made `lazy-lock-mode' wrap `font-lock-support-mode'
239 ;; 2.05--2.06:
240 ;; - Made `lazy-lock-fontify-after-defer' swap correctly (Scott Byer report)
241 ;; 2.06--2.07:
242 ;; - Added `lazy-lock-stealth-load' functionality (Rob Hooft hint)
243 ;; - Made `lazy-lock-unstall' call `lazy-lock-fontify-region' if needed
244 ;; - Made `lazy-lock-mode' call `lazy-lock-unstall' only if needed
245 ;; - Made `lazy-lock-defer-after-scroll' do `set-window-redisplay-end-trigger'
246 ;; - Added `lazy-lock-defer-contextually' functionality
247 ;; - Added `lazy-lock-defer-on-the-fly' from `lazy-lock-defer-time'
248 ;; - Renamed `lazy-lock-defer-driven' to `lazy-lock-defer-on-scrolling'
249 ;; - Removed `lazy-lock-submit-bug-report' and bade farewell
250 ;; 2.07--2.08:
251 ;; - Made `lazy-lock-fontify-conservatively' fontify around `window-point'
252 ;; - Made `save-buffer-state' wrap `inhibit-point-motion-hooks'
253 ;; - Added Custom support
254 ;; 2.08--2.09:
255 ;; - Removed `byte-*' variables from `eval-when-compile' (Erik Naggum hint)
256 ;; - Made various wrapping `inhibit-point-motion-hooks' (Vinicius Latorre hint)
257 ;; - Made `lazy-lock-fontify-after-idle' wrap `minibuffer-auto-raise'
258 ;; - Made `lazy-lock-fontify-after-defer' paranoid about deferred buffers
259 ;; 2.09--2.10:
260 ;; - Use `window-end' UPDATE arg for Emacs 20.3 and later.
261 ;; - Made deferral `widen' before unfontifying (Dan Nicolaescu report)
262 ;; - Use `lazy-lock-fontify-after-visage' for hideshow.el (Dan Nicolaescu hint)
263 ;; - Use `other' widget where possible (Andreas Schwab fix)
264 \f
265 ;;; Code:
266
267 (require 'font-lock)
268
269 ;; Make sure lazy-lock.el is supported.
270 (if (if (save-match-data (string-match "Lucid\\|XEmacs" (emacs-version)))
271 t
272 (and (= emacs-major-version 19) (< emacs-minor-version 30)))
273 (error "`lazy-lock' was written for Emacs 19.30 or later"))
274
275 (eval-when-compile
276 ;;
277 ;; We don't do this at the top-level as idle timers are not necessarily used.
278 (require 'timer)
279 ;; We don't do this at the top-level as we only use non-autoloaded macros.
280 (require 'cl)
281 ;;
282 ;; We use this to preserve or protect things when modifying text properties.
283 (defmacro save-buffer-state (varlist &rest body)
284 "Bind variables according to VARLIST and eval BODY restoring buffer state."
285 (` (let* ((,@ (append varlist
286 '((modified (buffer-modified-p)) (buffer-undo-list t)
287 (inhibit-read-only t) (inhibit-point-motion-hooks t)
288 before-change-functions after-change-functions
289 deactivate-mark buffer-file-name buffer-file-truename))))
290 (,@ body)
291 (when (and (not modified) (buffer-modified-p))
292 (set-buffer-modified-p nil)))))
293 (put 'save-buffer-state 'lisp-indent-function 1)
294 ;;
295 ;; We use this for clarity and speed. Naughty but nice.
296 (defmacro do-while (test &rest body)
297 "(do-while TEST BODY...): eval BODY... and repeat if TEST yields non-nil.
298 The order of execution is thus BODY, TEST, BODY, TEST and so on
299 until TEST returns nil."
300 (` (while (progn (,@ body) (, test)))))
301 (put 'do-while 'lisp-indent-function (get 'while 'lisp-indent-function))
302 ;;
303 ;; We use this for clarity and speed. Borrowed from a future Emacs.
304 (or (fboundp 'with-current-buffer)
305 (defmacro with-current-buffer (buffer &rest body)
306 "Execute the forms in BODY with BUFFER as the current buffer.
307 The value returned is the value of the last form in BODY."
308 (` (save-excursion (set-buffer (, buffer)) (,@ body)))))
309 (put 'with-current-buffer 'lisp-indent-function 1)
310 ;;
311 ;; We use this for compatibility with a future Emacs.
312 (or (fboundp 'defcustom)
313 (defmacro defcustom (symbol value doc &rest args)
314 (` (defvar (, symbol) (, value) (, doc))))))
315
316 ;(defun lazy-lock-submit-bug-report ()
317 ; "Submit via mail a bug report on lazy-lock.el."
318 ; (interactive)
319 ; (let ((reporter-prompt-for-summary-p t))
320 ; (reporter-submit-bug-report "simon@gnu.ai.mit.edu" "lazy-lock 2.10"
321 ; '(lazy-lock-minimum-size lazy-lock-defer-on-the-fly
322 ; lazy-lock-defer-on-scrolling lazy-lock-defer-contextually
323 ; lazy-lock-defer-time lazy-lock-stealth-time
324 ; lazy-lock-stealth-load lazy-lock-stealth-nice lazy-lock-stealth-lines
325 ; lazy-lock-stealth-verbose)
326 ; nil nil
327 ; (concat "Hi Si.,
328 ;
329 ;I want to report a bug. I've read the `Bugs' section of `Info' on Emacs, so I
330 ;know how to make a clear and unambiguous report. To reproduce the bug:
331 ;
332 ;Start a fresh editor via `" invocation-name " -no-init-file -no-site-file'.
333 ;In the `*scratch*' buffer, evaluate:"))))
334
335 (defvar lazy-lock-mode nil) ; Whether we are turned on.
336 (defvar lazy-lock-buffers nil) ; For deferral.
337 (defvar lazy-lock-timers (cons nil nil)) ; For deferral and stealth.
338 \f
339 ;; User Variables:
340
341 (defcustom lazy-lock-minimum-size (* 25 1024)
342 "*Minimum size of a buffer for demand-driven fontification.
343 On-demand fontification occurs if the buffer size is greater than this value.
344 If nil, means demand-driven fontification is never performed.
345 If a list, each element should be a cons pair of the form (MAJOR-MODE . SIZE),
346 where MAJOR-MODE is a symbol or t (meaning the default). For example:
347 ((c-mode . 25600) (c++-mode . 25600) (rmail-mode . 1048576))
348 means that the minimum size is 25K for buffers in C or C++ modes, one megabyte
349 for buffers in Rmail mode, and size is irrelevant otherwise.
350
351 The value of this variable is used when Lazy Lock mode is turned on."
352 :type '(choice (const :tag "none" nil)
353 (integer :tag "size")
354 (repeat :menu-tag "mode specific" :tag "mode specific"
355 :value ((t . nil))
356 (cons :tag "Instance"
357 (radio :tag "Mode"
358 (const :tag "all" t)
359 (symbol :tag "name"))
360 (radio :tag "Size"
361 (const :tag "none" nil)
362 (integer :tag "size")))))
363 :group 'lazy-lock)
364
365 (defcustom lazy-lock-defer-on-the-fly t
366 "*If non-nil, means fontification after a change should be deferred.
367 If nil, means on-the-fly fontification is performed. This means when changes
368 occur in the buffer, those areas are immediately fontified.
369 If a list, it should be a list of `major-mode' symbol names for which deferred
370 fontification should occur. The sense of the list is negated if it begins with
371 `not'. For example:
372 (c-mode c++-mode)
373 means that on-the-fly fontification is deferred for buffers in C and C++ modes
374 only, and deferral does not occur otherwise.
375
376 The value of this variable is used when Lazy Lock mode is turned on."
377 :type '(choice (const :tag "never" nil)
378 (const :tag "always" t)
379 (set :menu-tag "mode specific" :tag "modes"
380 :value (not)
381 (const :tag "Except" not)
382 (repeat :inline t (symbol :tag "mode"))))
383 :group 'lazy-lock)
384
385 (defcustom lazy-lock-defer-on-scrolling nil
386 "*If non-nil, means fontification after a scroll should be deferred.
387 If nil, means demand-driven fontification is performed. This means when
388 scrolling into unfontified areas of the buffer, those areas are immediately
389 fontified. Thus scrolling never presents unfontified areas. However, since
390 fontification occurs during scrolling, scrolling may be slow.
391 If t, means defer-driven fontification is performed. This means fontification
392 of those areas is deferred. Thus scrolling may present momentarily unfontified
393 areas. However, since fontification does not occur during scrolling, scrolling
394 will be faster than demand-driven fontification.
395 If any other value, e.g., `eventually', means demand-driven fontification is
396 performed until the buffer is fontified, then buffer fontification becomes
397 defer-driven. Thus scrolling never presents unfontified areas until the buffer
398 is first fontified, after which subsequent scrolling may present future buffer
399 insertions momentarily unfontified. However, since fontification does not
400 occur during scrolling after the buffer is first fontified, scrolling will
401 become faster. (But, since contextual changes continually occur, such a value
402 makes little sense if `lazy-lock-defer-contextually' is non-nil.)
403
404 The value of this variable is used when Lazy Lock mode is turned on."
405 :type '(choice (const :tag "never" nil)
406 (const :tag "always" t)
407 (other :tag "eventually" eventually))
408 :group 'lazy-lock)
409
410 (defcustom lazy-lock-defer-contextually 'syntax-driven
411 "*If non-nil, means deferred fontification should be syntactically true.
412 If nil, means deferred fontification occurs only on those lines modified. This
413 means where modification on a line causes syntactic change on subsequent lines,
414 those subsequent lines are not refontified to reflect their new context.
415 If t, means deferred fontification occurs on those lines modified and all
416 subsequent lines. This means those subsequent lines are refontified to reflect
417 their new syntactic context, either immediately or when scrolling into them.
418 If any other value, e.g., `syntax-driven', means deferred syntactically true
419 fontification occurs only if syntactic fontification is performed using the
420 buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil.
421
422 The value of this variable is used when Lazy Lock mode is turned on."
423 :type '(choice (const :tag "never" nil)
424 (const :tag "always" t)
425 (other :tag "syntax-driven" syntax-driven))
426 :group 'lazy-lock)
427
428 (defcustom lazy-lock-defer-time
429 (if (featurep 'lisp-float-type) (/ (float 1) (float 4)) 1)
430 "*Time in seconds to delay before beginning deferred fontification.
431 Deferred fontification occurs if there is no input within this time.
432 If nil, means fontification is never deferred, regardless of the values of the
433 variables `lazy-lock-defer-on-the-fly', `lazy-lock-defer-on-scrolling' and
434 `lazy-lock-defer-contextually'.
435
436 The value of this variable is used when Lazy Lock mode is turned on."
437 :type '(choice (const :tag "never" nil)
438 (number :tag "seconds"))
439 :group 'lazy-lock)
440
441 (defcustom lazy-lock-stealth-time 30
442 "*Time in seconds to delay before beginning stealth fontification.
443 Stealth fontification occurs if there is no input within this time.
444 If nil, means stealth fontification is never performed.
445
446 The value of this variable is used when Lazy Lock mode is turned on."
447 :type '(choice (const :tag "never" nil)
448 (number :tag "seconds"))
449 :group 'lazy-lock)
450
451 (defcustom lazy-lock-stealth-lines (if font-lock-maximum-decoration 100 250)
452 "*Maximum size of a chunk of stealth fontification.
453 Each iteration of stealth fontification can fontify this number of lines.
454 To speed up input response during stealth fontification, at the cost of stealth
455 taking longer to fontify, you could reduce the value of this variable."
456 :type '(integer :tag "lines")
457 :group 'lazy-lock)
458
459 (defcustom lazy-lock-stealth-load
460 (if (condition-case nil (load-average) (error)) 200)
461 "*Load in percentage above which stealth fontification is suspended.
462 Stealth fontification pauses when the system short-term load average (as
463 returned by the function `load-average' if supported) goes above this level,
464 thus reducing the demand that stealth fontification makes on the system.
465 If nil, means stealth fontification is never suspended.
466 To reduce machine load during stealth fontification, at the cost of stealth
467 taking longer to fontify, you could reduce the value of this variable.
468 See also `lazy-lock-stealth-nice'."
469 :type (if (condition-case nil (load-average) (error))
470 '(choice (const :tag "never" nil)
471 (integer :tag "load"))
472 '(const :format "%t: unsupported\n" nil))
473 :group 'lazy-lock)
474
475 (defcustom lazy-lock-stealth-nice
476 (if (featurep 'lisp-float-type) (/ (float 1) (float 8)) 1)
477 "*Time in seconds to pause between chunks of stealth fontification.
478 Each iteration of stealth fontification is separated by this amount of time,
479 thus reducing the demand that stealth fontification makes on the system.
480 If nil, means stealth fontification is never paused.
481 To reduce machine load during stealth fontification, at the cost of stealth
482 taking longer to fontify, you could increase the value of this variable.
483 See also `lazy-lock-stealth-load'."
484 :type '(choice (const :tag "never" nil)
485 (number :tag "seconds"))
486 :group 'lazy-lock)
487
488 (defcustom lazy-lock-stealth-verbose
489 (if (featurep 'lisp-float-type)
490 (and (not lazy-lock-defer-contextually) (not (null font-lock-verbose))))
491 "*If non-nil, means stealth fontification should show status messages."
492 :type 'boolean
493 :group 'lazy-lock)
494 \f
495 ;; User Functions:
496
497 ;;;###autoload
498 (defun lazy-lock-mode (&optional arg)
499 "Toggle Lazy Lock mode.
500 With arg, turn Lazy Lock mode on if and only if arg is positive. Enable it
501 automatically in your `~/.emacs' by:
502
503 (setq font-lock-support-mode 'lazy-lock-mode)
504
505 When Lazy Lock mode is enabled, fontification can be lazy in a number of ways:
506
507 - Demand-driven buffer fontification if `lazy-lock-minimum-size' is non-nil.
508 This means initial fontification does not occur if the buffer is greater than
509 `lazy-lock-minimum-size' characters in length. Instead, fontification occurs
510 when necessary, such as when scrolling through the buffer would otherwise
511 reveal unfontified areas. This is useful if buffer fontification is too slow
512 for large buffers.
513
514 - Deferred scroll fontification if `lazy-lock-defer-on-scrolling' is non-nil.
515 This means demand-driven fontification does not occur as you scroll.
516 Instead, fontification is deferred until after `lazy-lock-defer-time' seconds
517 of Emacs idle time, while Emacs remains idle. This is useful if
518 fontification is too slow to keep up with scrolling.
519
520 - Deferred on-the-fly fontification if `lazy-lock-defer-on-the-fly' is non-nil.
521 This means on-the-fly fontification does not occur as you type. Instead,
522 fontification is deferred until after `lazy-lock-defer-time' seconds of Emacs
523 idle time, while Emacs remains idle. This is useful if fontification is too
524 slow to keep up with your typing.
525
526 - Deferred context fontification if `lazy-lock-defer-contextually' is non-nil.
527 This means fontification updates the buffer corresponding to true syntactic
528 context, after `lazy-lock-defer-time' seconds of Emacs idle time, while Emacs
529 remains idle. Otherwise, fontification occurs on modified lines only, and
530 subsequent lines can remain fontified corresponding to previous syntactic
531 contexts. This is useful where strings or comments span lines.
532
533 - Stealthy buffer fontification if `lazy-lock-stealth-time' is non-nil.
534 This means remaining unfontified areas of buffers are fontified if Emacs has
535 been idle for `lazy-lock-stealth-time' seconds, while Emacs remains idle.
536 This is useful if any buffer has any deferred fontification.
537
538 Basic Font Lock mode on-the-fly fontification behaviour fontifies modified
539 lines only. Thus, if `lazy-lock-defer-contextually' is non-nil, Lazy Lock mode
540 on-the-fly fontification may fontify differently, albeit correctly. In any
541 event, to refontify some lines you can use \\[font-lock-fontify-block].
542
543 Stealth fontification only occurs while the system remains unloaded.
544 If the system load rises above `lazy-lock-stealth-load' percent, stealth
545 fontification is suspended. Stealth fontification intensity is controlled via
546 the variable `lazy-lock-stealth-nice' and `lazy-lock-stealth-lines', and
547 verbosity is controlled via the variable `lazy-lock-stealth-verbose'."
548 (interactive "P")
549 (let* ((was-on lazy-lock-mode)
550 (now-on (unless (memq 'lazy-lock-mode font-lock-inhibit-thing-lock)
551 (if arg (> (prefix-numeric-value arg) 0) (not was-on)))))
552 (cond ((and now-on (not font-lock-mode))
553 ;; Turned on `lazy-lock-mode' rather than `font-lock-mode'.
554 (let ((font-lock-support-mode 'lazy-lock-mode))
555 (font-lock-mode t)))
556 (now-on
557 ;; Turn ourselves on.
558 (set (make-local-variable 'lazy-lock-mode) t)
559 (lazy-lock-install))
560 (was-on
561 ;; Turn ourselves off.
562 (set (make-local-variable 'lazy-lock-mode) nil)
563 (lazy-lock-unstall)))))
564
565 ;;;###autoload
566 (defun turn-on-lazy-lock ()
567 "Unconditionally turn on Lazy Lock mode."
568 (lazy-lock-mode t))
569
570 (defun lazy-lock-install ()
571 (let ((min-size (font-lock-value-in-major-mode lazy-lock-minimum-size))
572 (defer-change (and lazy-lock-defer-time lazy-lock-defer-on-the-fly))
573 (defer-scroll (and lazy-lock-defer-time lazy-lock-defer-on-scrolling))
574 (defer-context (and lazy-lock-defer-time lazy-lock-defer-contextually
575 (or (eq lazy-lock-defer-contextually t)
576 (null font-lock-keywords-only)))))
577 ;;
578 ;; Tell Font Lock whether Lazy Lock will do fontification.
579 (make-local-variable 'font-lock-fontified)
580 (setq font-lock-fontified (and min-size (>= (buffer-size) min-size)))
581 ;;
582 ;; Add the text properties and fontify.
583 (if (not font-lock-fontified)
584 (lazy-lock-after-fontify-buffer)
585 ;; Make sure we fontify in any existing windows showing the buffer.
586 (let ((windows (get-buffer-window-list (current-buffer) 'nomini t)))
587 (lazy-lock-after-unfontify-buffer)
588 (while windows
589 (lazy-lock-fontify-conservatively (car windows))
590 (setq windows (cdr windows)))))
591 ;;
592 ;; Add the fontification hooks.
593 (lazy-lock-install-hooks
594 font-lock-fontified
595 (cond ((eq (car-safe defer-change) 'not)
596 (not (memq major-mode (cdr defer-change))))
597 ((listp defer-change)
598 (memq major-mode defer-change))
599 (t
600 defer-change))
601 (eq defer-scroll t)
602 defer-context)
603 ;;
604 ;; Add the fontification timers.
605 (lazy-lock-install-timers
606 (if (or defer-change defer-scroll defer-context) lazy-lock-defer-time)
607 lazy-lock-stealth-time)))
608
609 (defun lazy-lock-install-hooks (fontifying
610 defer-change defer-scroll defer-context)
611 ;;
612 ;; Add hook if lazy-lock.el is fontifying on scrolling or is deferring.
613 (when (or fontifying defer-change defer-scroll defer-context)
614 (make-local-hook 'window-scroll-functions)
615 (add-hook 'window-scroll-functions (if defer-scroll
616 'lazy-lock-defer-after-scroll
617 'lazy-lock-fontify-after-scroll)
618 nil t))
619 ;;
620 ;; Add hook if lazy-lock.el is fontifying and is not deferring changes.
621 (when (and fontifying (not defer-change) (not defer-context))
622 (make-local-hook 'before-change-functions)
623 (add-hook 'before-change-functions 'lazy-lock-arrange-before-change nil t))
624 ;;
625 ;; Replace Font Lock mode hook.
626 (remove-hook 'after-change-functions 'font-lock-after-change-function t)
627 (add-hook 'after-change-functions
628 (cond ((and defer-change defer-context)
629 'lazy-lock-defer-rest-after-change)
630 (defer-change
631 'lazy-lock-defer-line-after-change)
632 (defer-context
633 'lazy-lock-fontify-rest-after-change)
634 (t
635 'lazy-lock-fontify-line-after-change))
636 nil t)
637 ;;
638 ;; Add package-specific hook.
639 (make-local-hook 'outline-view-change-hook)
640 (add-hook 'outline-view-change-hook 'lazy-lock-fontify-after-visage nil t)
641 (make-local-hook 'hs-hide-hook)
642 (add-hook 'hs-hide-hook 'lazy-lock-fontify-after-visage nil t))
643
644 (defun lazy-lock-install-timers (dtime stime)
645 ;; Schedule or re-schedule the deferral and stealth timers.
646 ;; The layout of `lazy-lock-timers' is:
647 ;; ((DEFER-TIME . DEFER-TIMER) (STEALTH-TIME . STEALTH-TIMER)
648 ;; If an idle timeout has changed, cancel the existing idle timer (if there
649 ;; is one) and schedule a new one (if the new idle timeout is non-nil).
650 (unless (eq dtime (car (car lazy-lock-timers)))
651 (let ((defer (car lazy-lock-timers)))
652 (when (cdr defer)
653 (cancel-timer (cdr defer)))
654 (setcar lazy-lock-timers (cons dtime (and dtime
655 (run-with-idle-timer dtime t 'lazy-lock-fontify-after-defer))))))
656 (unless (eq stime (car (cdr lazy-lock-timers)))
657 (let ((stealth (cdr lazy-lock-timers)))
658 (when (cdr stealth)
659 (cancel-timer (cdr stealth)))
660 (setcdr lazy-lock-timers (cons stime (and stime
661 (run-with-idle-timer stime t 'lazy-lock-fontify-after-idle)))))))
662
663 (defun lazy-lock-unstall ()
664 ;;
665 ;; If Font Lock mode is still enabled, make sure that the buffer is
666 ;; fontified, and reinstall its hook. We must do this first.
667 (when font-lock-mode
668 (when (lazy-lock-unfontified-p)
669 (let ((verbose (if (numberp font-lock-verbose)
670 (> (buffer-size) font-lock-verbose)
671 font-lock-verbose)))
672 (if verbose (message "Fontifying %s..." (buffer-name)))
673 ;; Make sure we fontify etc. in the whole buffer.
674 (save-restriction
675 (widen)
676 (lazy-lock-fontify-region (point-min) (point-max)))
677 (if verbose (message "Fontifying %s...%s" (buffer-name)
678 (if (lazy-lock-unfontified-p) "quit" "done")))))
679 (add-hook 'after-change-functions 'font-lock-after-change-function nil t))
680 ;;
681 ;; Remove the text properties.
682 (lazy-lock-after-unfontify-buffer)
683 ;;
684 ;; Remove the fontification hooks.
685 (remove-hook 'window-scroll-functions 'lazy-lock-fontify-after-scroll t)
686 (remove-hook 'window-scroll-functions 'lazy-lock-defer-after-scroll t)
687 (remove-hook 'before-change-functions 'lazy-lock-arrange-before-change t)
688 (remove-hook 'after-change-functions 'lazy-lock-fontify-line-after-change t)
689 (remove-hook 'after-change-functions 'lazy-lock-fontify-rest-after-change t)
690 (remove-hook 'after-change-functions 'lazy-lock-defer-line-after-change t)
691 (remove-hook 'after-change-functions 'lazy-lock-defer-rest-after-change t)
692 (remove-hook 'outline-view-change-hook 'lazy-lock-fontify-after-visage t)
693 (remove-hook 'hs-hide-hook 'lazy-lock-fontify-after-visage t))
694 \f
695 ;; Hook functions.
696
697 ;; Lazy Lock mode intervenes when (1) a previously invisible buffer region
698 ;; becomes visible, i.e., for demand- or defer-driven on-the-scroll
699 ;; fontification, (2) a buffer modification occurs, i.e., for defer-driven
700 ;; on-the-fly fontification, (3) Emacs becomes idle, i.e., for fontification of
701 ;; deferred fontification and stealth fontification, and (4) other special
702 ;; occasions.
703
704 ;; 1. There are three ways whereby this can happen.
705 ;;
706 ;; (a) Scrolling the window, either explicitly (e.g., `scroll-up') or
707 ;; implicitly (e.g., `search-forward'). Here, `window-start' changes.
708 ;; Fontification occurs by adding `lazy-lock-fontify-after-scroll' (for
709 ;; demand-driven fontification) or `lazy-lock-defer-after-scroll' (for
710 ;; defer-driven fontification) to the hook `window-scroll-functions'.
711
712 (defun lazy-lock-fontify-after-scroll (window window-start)
713 ;; Called from `window-scroll-functions'.
714 ;; Fontify WINDOW from WINDOW-START following the scroll.
715 (let ((inhibit-point-motion-hooks t))
716 (lazy-lock-fontify-region window-start (window-end window t)))
717 ;; A prior deletion that did not cause scrolling, followed by a scroll, would
718 ;; result in an unnecessary trigger after this if we did not cancel it now.
719 (set-window-redisplay-end-trigger window nil))
720
721 (defun lazy-lock-defer-after-scroll (window window-start)
722 ;; Called from `window-scroll-functions'.
723 ;; Defer fontification following the scroll. Save the current buffer so that
724 ;; we subsequently fontify in all windows showing the buffer.
725 (unless (memq (current-buffer) lazy-lock-buffers)
726 (push (current-buffer) lazy-lock-buffers))
727 ;; A prior deletion that did not cause scrolling, followed by a scroll, would
728 ;; result in an unnecessary trigger after this if we did not cancel it now.
729 (set-window-redisplay-end-trigger window nil))
730
731 ;; (b) Resizing the window, either explicitly (e.g., `enlarge-window') or
732 ;; implicitly (e.g., `delete-other-windows'). Here, `window-end' changes.
733 ;; Fontification occurs by adding `lazy-lock-fontify-after-resize' to the
734 ;; hook `window-size-change-functions'.
735
736 (defun lazy-lock-fontify-after-resize (frame)
737 ;; Called from `window-size-change-functions'.
738 ;; Fontify windows in FRAME following the resize. We cannot use
739 ;; `window-start' or `window-end' so we fontify conservatively.
740 (save-excursion
741 (save-selected-window
742 (select-frame frame)
743 (walk-windows (function (lambda (window)
744 (set-buffer (window-buffer window))
745 (when lazy-lock-mode
746 (lazy-lock-fontify-conservatively window))
747 (set-window-redisplay-end-trigger window nil)))
748 'nomini frame))))
749
750 ;; (c) Deletion in the buffer. Here, a `window-end' marker can become visible.
751 ;; Fontification occurs by adding `lazy-lock-arrange-before-change' to
752 ;; `before-change-functions' and `lazy-lock-fontify-after-trigger' to the
753 ;; hook `redisplay-end-trigger-functions'. Before every deletion, the
754 ;; marker `window-redisplay-end-trigger' position is set to the soon-to-be
755 ;; changed `window-end' position. If the marker becomes visible,
756 ;; `lazy-lock-fontify-after-trigger' gets called. Ouch. Note that we only
757 ;; have to deal with this eventuality if there is no on-the-fly deferral.
758
759 (defun lazy-lock-arrange-before-change (beg end)
760 ;; Called from `before-change-functions'.
761 ;; Arrange that if text becomes visible it will be fontified (if a deletion
762 ;; is pending, text might become visible at the bottom).
763 (unless (eq beg end)
764 (let ((windows (get-buffer-window-list (current-buffer) 'nomini t)) window)
765 (while windows
766 (setq window (car windows))
767 (unless (markerp (window-redisplay-end-trigger window))
768 (set-window-redisplay-end-trigger window (make-marker)))
769 (set-marker (window-redisplay-end-trigger window) (window-end window))
770 (setq windows (cdr windows))))))
771
772 (defun lazy-lock-fontify-after-trigger (window trigger-point)
773 ;; Called from `redisplay-end-trigger-functions'.
774 ;; Fontify WINDOW from TRIGGER-POINT following the redisplay.
775 ;; We could probably just use `lazy-lock-fontify-after-scroll' without loss:
776 ;; (inline (lazy-lock-fontify-after-scroll window (window-start window)))
777 (let ((inhibit-point-motion-hooks t))
778 (lazy-lock-fontify-region trigger-point (window-end window t))))
779
780 ;; 2. Modified text must be marked as unfontified so it can be identified and
781 ;; fontified later when Emacs is idle. Deferral occurs by adding one of
782 ;; `lazy-lock-fontify-*-after-change' (for on-the-fly fontification) or
783 ;; `lazy-lock-defer-*-after-change' (for deferred fontification) to the
784 ;; hook `after-change-functions'.
785
786 (defalias 'lazy-lock-fontify-line-after-change
787 ;; Called from `after-change-functions'.
788 ;; Fontify the current change.
789 'font-lock-after-change-function)
790
791 (defun lazy-lock-fontify-rest-after-change (beg end old-len)
792 ;; Called from `after-change-functions'.
793 ;; Fontify the current change and defer fontification of the rest of the
794 ;; buffer. Save the current buffer so that we subsequently fontify in all
795 ;; windows showing the buffer.
796 (lazy-lock-fontify-line-after-change beg end old-len)
797 (save-buffer-state nil
798 (unless (memq (current-buffer) lazy-lock-buffers)
799 (push (current-buffer) lazy-lock-buffers))
800 (save-restriction
801 (widen)
802 (remove-text-properties end (point-max) '(lazy-lock nil)))))
803
804 (defun lazy-lock-defer-line-after-change (beg end old-len)
805 ;; Called from `after-change-functions'.
806 ;; Defer fontification of the current change. Save the current buffer so
807 ;; that we subsequently fontify in all windows showing the buffer.
808 (save-buffer-state nil
809 (unless (memq (current-buffer) lazy-lock-buffers)
810 (push (current-buffer) lazy-lock-buffers))
811 (remove-text-properties (max (1- beg) (point-min))
812 (min (1+ end) (point-max))
813 '(lazy-lock nil))))
814
815 (defun lazy-lock-defer-rest-after-change (beg end old-len)
816 ;; Called from `after-change-functions'.
817 ;; Defer fontification of the rest of the buffer. Save the current buffer so
818 ;; that we subsequently fontify in all windows showing the buffer.
819 (save-buffer-state nil
820 (unless (memq (current-buffer) lazy-lock-buffers)
821 (push (current-buffer) lazy-lock-buffers))
822 (save-restriction
823 (widen)
824 (remove-text-properties (max (1- beg) (point-min))
825 (point-max)
826 '(lazy-lock nil)))))
827
828 ;; 3. Deferred fontification and stealth fontification are done from these two
829 ;; functions. They are set up as Idle Timers.
830
831 (defun lazy-lock-fontify-after-defer ()
832 ;; Called from `timer-idle-list'.
833 ;; Fontify all windows where deferral has occurred for its buffer.
834 (save-excursion
835 (while (and lazy-lock-buffers (not (input-pending-p)))
836 (let ((buffer (car lazy-lock-buffers)) windows)
837 ;; Paranoia: check that the buffer is still live and Lazy Lock mode on.
838 (when (buffer-live-p buffer)
839 (set-buffer buffer)
840 (when lazy-lock-mode
841 (setq windows (get-buffer-window-list buffer 'nomini t))
842 (while windows
843 (lazy-lock-fontify-window (car windows))
844 (setq windows (cdr windows)))))
845 (setq lazy-lock-buffers (cdr lazy-lock-buffers)))))
846 ;; Add hook if fontification should now be defer-driven in this buffer.
847 (when (and lazy-lock-mode lazy-lock-defer-on-scrolling
848 (memq 'lazy-lock-fontify-after-scroll window-scroll-functions)
849 (not (or (input-pending-p) (lazy-lock-unfontified-p))))
850 (remove-hook 'window-scroll-functions 'lazy-lock-fontify-after-scroll t)
851 (add-hook 'window-scroll-functions 'lazy-lock-defer-after-scroll nil t)))
852
853 (defun lazy-lock-fontify-after-idle ()
854 ;; Called from `timer-idle-list'.
855 ;; Fontify all buffers that need it, stealthily while idle.
856 (unless (or executing-kbd-macro (window-minibuffer-p (selected-window)))
857 ;; Loop over all buffers, fontify stealthily for each if necessary.
858 (let ((buffers (buffer-list)) (continue t)
859 message message-log-max minibuffer-auto-raise)
860 (save-excursion
861 (do-while (and buffers continue)
862 (set-buffer (car buffers))
863 (if (not (and lazy-lock-mode (lazy-lock-unfontified-p)))
864 (setq continue (not (input-pending-p)))
865 ;; Fontify regions in this buffer while there is no input.
866 (do-while (and (lazy-lock-unfontified-p) continue)
867 (if (and lazy-lock-stealth-load
868 (> (car (load-average)) lazy-lock-stealth-load))
869 ;; Wait a while before continuing with the loop.
870 (progn
871 (when message
872 (message "Fontifying stealthily...suspended")
873 (setq message nil))
874 (setq continue (sit-for (or lazy-lock-stealth-time 30))))
875 ;; Fontify a chunk.
876 (when lazy-lock-stealth-verbose
877 (if message
878 (message "Fontifying stealthily... %2d%% of %s"
879 (lazy-lock-percent-fontified) (buffer-name))
880 (message "Fontifying stealthily...")
881 (setq message t)))
882 (lazy-lock-fontify-chunk)
883 (setq continue (sit-for (or lazy-lock-stealth-nice 0))))))
884 (setq buffers (cdr buffers))))
885 (when message
886 (message "Fontifying stealthily...%s" (if continue "done" "quit"))))))
887
888 ;; 4. Special circumstances.
889
890 (defun lazy-lock-fontify-after-visage ()
891 ;; Called from `outline-view-change-hook' and `hs-hide-hook'.
892 ;; Fontify windows showing the current buffer, as its visibility has changed.
893 ;; This is a conspiracy hack between lazy-lock.el, outline.el and
894 ;; hideshow.el.
895 (let ((windows (get-buffer-window-list (current-buffer) 'nomini t)))
896 (while windows
897 (lazy-lock-fontify-conservatively (car windows))
898 (setq windows (cdr windows)))))
899
900 (defun lazy-lock-after-fontify-buffer ()
901 ;; Called from `font-lock-after-fontify-buffer'.
902 ;; Mark the current buffer as fontified.
903 ;; This is a conspiracy hack between lazy-lock.el and font-lock.el.
904 (save-buffer-state nil
905 (add-text-properties (point-min) (point-max) '(lazy-lock t))))
906
907 (defun lazy-lock-after-unfontify-buffer ()
908 ;; Called from `font-lock-after-unfontify-buffer'.
909 ;; Mark the current buffer as unfontified.
910 ;; This is a conspiracy hack between lazy-lock.el and font-lock.el.
911 (save-buffer-state nil
912 (remove-text-properties (point-min) (point-max) '(lazy-lock nil))))
913 \f
914 ;; Fontification functions.
915
916 ;; If packages want to ensure that some region of the buffer is fontified, they
917 ;; should use this function. For an example, see ps-print.el.
918 (defun lazy-lock-fontify-region (beg end)
919 ;; Fontify between BEG and END, where necessary, in the current buffer.
920 (when (setq beg (text-property-any beg end 'lazy-lock nil))
921 (save-excursion
922 (save-match-data
923 (save-buffer-state
924 ;; Ensure syntactic fontification is always correct.
925 (font-lock-beginning-of-syntax-function next)
926 ;; Find successive unfontified regions between BEG and END.
927 (condition-case data
928 (do-while beg
929 (setq next (or (text-property-any beg end 'lazy-lock t) end))
930 ;; Make sure the region end points are at beginning of line.
931 (goto-char beg)
932 (unless (bolp)
933 (beginning-of-line)
934 (setq beg (point)))
935 (goto-char next)
936 (unless (bolp)
937 (forward-line)
938 (setq next (point)))
939 ;; Fontify the region, then flag it as fontified.
940 (font-lock-fontify-region beg next)
941 (add-text-properties beg next '(lazy-lock t))
942 (setq beg (text-property-any next end 'lazy-lock nil)))
943 ((error quit) (message "Fontifying region...%s" data))))))))
944
945 (defun lazy-lock-fontify-chunk ()
946 ;; Fontify the nearest chunk, for stealth, in the current buffer.
947 (let ((inhibit-point-motion-hooks t))
948 (save-excursion
949 (save-restriction
950 (widen)
951 ;; Move to end of line in case the character at point is not fontified.
952 (end-of-line)
953 ;; Find where the previous (next) unfontified regions end (begin).
954 (let ((prev (previous-single-property-change (point) 'lazy-lock))
955 (next (text-property-any (point) (point-max) 'lazy-lock nil)))
956 ;; Fontify from the nearest unfontified position.
957 (if (or (null prev) (and next (< (- next (point)) (- (point) prev))))
958 ;; The next, or neither, region is the nearest not fontified.
959 (lazy-lock-fontify-region
960 (progn (goto-char (or next (point-min)))
961 (beginning-of-line)
962 (point))
963 (progn (goto-char (or next (point-min)))
964 (forward-line lazy-lock-stealth-lines)
965 (point)))
966 ;; The previous region is the nearest not fontified.
967 (lazy-lock-fontify-region
968 (progn (goto-char prev)
969 (forward-line (- lazy-lock-stealth-lines))
970 (point))
971 (progn (goto-char prev)
972 (forward-line)
973 (point)))))))))
974
975 (defun lazy-lock-fontify-window (window)
976 ;; Fontify in WINDOW between `window-start' and `window-end'.
977 ;; We can only do this when we can use `window-start' and `window-end'.
978 (with-current-buffer (window-buffer window)
979 (lazy-lock-fontify-region (window-start window) (window-end window))))
980
981 (defun lazy-lock-fontify-conservatively (window)
982 ;; Fontify in WINDOW conservatively around point.
983 ;; Where we cannot use `window-start' and `window-end' we do `window-height'
984 ;; lines around point. That way we guarantee to have done enough.
985 (with-current-buffer (window-buffer window)
986 (let ((inhibit-point-motion-hooks t))
987 (lazy-lock-fontify-region
988 (save-excursion
989 (goto-char (window-point window))
990 (vertical-motion (- (window-height window)) window) (point))
991 (save-excursion
992 (goto-char (window-point window))
993 (vertical-motion (window-height window) window) (point))))))
994
995 (defun lazy-lock-unfontified-p ()
996 ;; Return non-nil if there is anywhere still to be fontified.
997 (save-restriction
998 (widen)
999 (text-property-any (point-min) (point-max) 'lazy-lock nil)))
1000
1001 (defun lazy-lock-percent-fontified ()
1002 ;; Return the percentage (of characters) of the buffer that are fontified.
1003 (save-restriction
1004 (widen)
1005 (let ((beg (point-min)) (size 0) next)
1006 ;; Find where the next fontified region begins.
1007 (while (setq beg (text-property-any beg (point-max) 'lazy-lock t))
1008 (setq next (or (text-property-any beg (point-max) 'lazy-lock nil)
1009 (point-max)))
1010 (incf size (- next beg))
1011 (setq beg next))
1012 ;; Float because using integer multiplication will frequently overflow.
1013 (truncate (* (/ (float size) (point-max)) 100)))))
1014 \f
1015 ;; Version dependent workarounds and fixes.
1016
1017 (when (if (save-match-data (string-match "Lucid\\|XEmacs" (emacs-version)))
1018 nil
1019 (and (= emacs-major-version 19) (= emacs-minor-version 30)))
1020 ;;
1021 ;; We use `post-command-idle-hook' for deferral and stealth. Oh Lordy.
1022 (defun lazy-lock-install-timers (foo bar)
1023 (add-hook 'post-command-idle-hook 'lazy-lock-fontify-post-command t)
1024 (add-hook 'post-command-idle-hook 'lazy-lock-fontify-post-idle t)
1025 (add-to-list 'lazy-lock-install (current-buffer))
1026 (add-hook 'post-command-hook 'lazy-lock-fontify-after-install))
1027 (defun lazy-lock-fontify-post-command ()
1028 (and lazy-lock-buffers (not executing-kbd-macro)
1029 (progn
1030 (and deactivate-mark (deactivate-mark))
1031 (sit-for
1032 (or (cdr-safe lazy-lock-defer-time) lazy-lock-defer-time 0)))
1033 (lazy-lock-fontify-after-defer)))
1034 (defun lazy-lock-fontify-post-idle ()
1035 (and lazy-lock-stealth-time (not executing-kbd-macro)
1036 (not (window-minibuffer-p (selected-window)))
1037 (progn
1038 (and deactivate-mark (deactivate-mark))
1039 (sit-for lazy-lock-stealth-time))
1040 (lazy-lock-fontify-after-idle)))
1041 ;;
1042 ;; Simulate running of `window-scroll-functions' in `set-window-buffer'.
1043 (defvar lazy-lock-install nil)
1044 (defun lazy-lock-fontify-after-install ()
1045 (remove-hook 'post-command-hook 'lazy-lock-fontify-after-install)
1046 (while lazy-lock-install
1047 (mapcar 'lazy-lock-fontify-conservatively
1048 (get-buffer-window-list (pop lazy-lock-install) 'nomini t)))))
1049
1050 (when (if (save-match-data (string-match "Lucid\\|XEmacs" (emacs-version)))
1051 nil
1052 (or (and (= emacs-major-version 20) (< emacs-minor-version 3))
1053 (= emacs-major-version 19)))
1054 ;;
1055 ;; We use `vertical-motion' rather than `window-end' UPDATE arg.
1056 (defun lazy-lock-fontify-after-scroll (window window-start)
1057 ;; Called from `window-scroll-functions'.
1058 ;; Fontify WINDOW from WINDOW-START following the scroll. We cannot use
1059 ;; `window-end' so we work out what it would be via `vertical-motion'.
1060 (let ((inhibit-point-motion-hooks t))
1061 (save-excursion
1062 (goto-char window-start)
1063 (vertical-motion (window-height window) window)
1064 (lazy-lock-fontify-region window-start (point))))
1065 (set-window-redisplay-end-trigger window nil))
1066 (defun lazy-lock-fontify-after-trigger (window trigger-point)
1067 ;; Called from `redisplay-end-trigger-functions'.
1068 ;; Fontify WINDOW from TRIGGER-POINT following the redisplay. We cannot
1069 ;; use `window-end' so we work out what it would be via `vertical-motion'.
1070 (let ((inhibit-point-motion-hooks t))
1071 (save-excursion
1072 (goto-char (window-start window))
1073 (vertical-motion (window-height window) window)
1074 (lazy-lock-fontify-region trigger-point (point))))))
1075
1076 (when (consp lazy-lock-defer-time)
1077 ;;
1078 ;; In 2.06.04 and below, `lazy-lock-defer-time' could specify modes and time.
1079 (with-output-to-temp-buffer "*Help*"
1080 (princ "The value of the variable `lazy-lock-defer-time' was\n ")
1081 (princ lazy-lock-defer-time)
1082 (princ "\n")
1083 (princ "This variable cannot now be a list of modes and time, ")
1084 (princ "so instead use the forms:\n")
1085 (princ " (setq lazy-lock-defer-time ")
1086 (princ (cdr lazy-lock-defer-time))
1087 (princ ")\n")
1088 (princ " (setq lazy-lock-defer-on-the-fly '")
1089 (princ (car lazy-lock-defer-time))
1090 (princ ")\n")
1091 (princ "in your ~/.emacs. ")
1092 (princ "The above forms have been evaluated for this editor session,\n")
1093 (princ "but you should change your ~/.emacs now."))
1094 (setq lazy-lock-defer-on-the-fly (car lazy-lock-defer-time)
1095 lazy-lock-defer-time (cdr lazy-lock-defer-time)))
1096
1097 (when (boundp 'lazy-lock-defer-driven)
1098 ;;
1099 ;; In 2.06.04 and below, `lazy-lock-defer-driven' was the variable name.
1100 (with-output-to-temp-buffer "*Help*"
1101 (princ "The value of the variable `lazy-lock-defer-driven' is set to ")
1102 (if (memq lazy-lock-defer-driven '(nil t))
1103 (princ lazy-lock-defer-driven)
1104 (princ "`")
1105 (princ lazy-lock-defer-driven)
1106 (princ "'"))
1107 (princ ".\n")
1108 (princ "This variable is now called `lazy-lock-defer-on-scrolling',\n")
1109 (princ "so instead use the form:\n")
1110 (princ " (setq lazy-lock-defer-on-scrolling ")
1111 (unless (memq lazy-lock-defer-driven '(nil t))
1112 (princ "'"))
1113 (princ lazy-lock-defer-driven)
1114 (princ ")\n")
1115 (princ "in your ~/.emacs. ")
1116 (princ "The above form has been evaluated for this editor session,\n")
1117 (princ "but you should change your ~/.emacs now."))
1118 (setq lazy-lock-defer-on-scrolling lazy-lock-defer-driven))
1119 \f
1120 ;; Possibly absent.
1121
1122 (unless (boundp 'font-lock-inhibit-thing-lock)
1123 ;; Font Lock mode uses this to direct Lazy and Fast Lock modes to stay off.
1124 (defvar font-lock-inhibit-thing-lock nil
1125 "List of Font Lock mode related modes that should not be turned on."))
1126
1127 (unless (fboundp 'font-lock-value-in-major-mode)
1128 (defun font-lock-value-in-major-mode (alist)
1129 ;; Return value in ALIST for `major-mode'.
1130 (if (consp alist)
1131 (cdr (or (assq major-mode alist) (assq t alist)))
1132 alist)))
1133
1134 (unless (fboundp 'buffer-live-p)
1135 ;; We use this to check that a buffer we have to fontify still exists.
1136 (defun buffer-live-p (object)
1137 "Return non-nil if OBJECT is an editor buffer that has not been deleted."
1138 (and (bufferp object) (buffer-name object))))
1139
1140 (unless (fboundp 'get-buffer-window-list)
1141 ;; We use this to get all windows showing a buffer we have to fontify.
1142 (defun get-buffer-window-list (buffer &optional minibuf frame)
1143 "Return windows currently displaying BUFFER, or nil if none."
1144 (let ((buffer (if (bufferp buffer) buffer (get-buffer buffer))) windows)
1145 (walk-windows (function (lambda (window)
1146 (when (eq (window-buffer window) buffer)
1147 (push window windows))))
1148 minibuf frame)
1149 windows)))
1150 \f
1151 ;; Install ourselves:
1152
1153 (add-hook 'window-size-change-functions 'lazy-lock-fontify-after-resize)
1154 (add-hook 'redisplay-end-trigger-functions 'lazy-lock-fontify-after-trigger)
1155
1156 (unless (assq 'lazy-lock-mode minor-mode-alist)
1157 (setq minor-mode-alist (append minor-mode-alist '((lazy-lock-mode nil)))))
1158
1159 ;; Provide ourselves:
1160
1161 (provide 'lazy-lock)
1162
1163 ;;; lazy-lock.el ends here