Bump version to 24.0.94
[bpt/emacs.git] / lisp / jit-lock.el
CommitLineData
e8af40ee 1;;; jit-lock.el --- just-in-time fontification
7840ced1 2
acaf905b 3;; Copyright (C) 1998, 2000-2012 Free Software Foundation, Inc.
7840ced1
GM
4
5;; Author: Gerd Moellmann <gerd@gnu.org>
6;; Keywords: faces files
bd78fa1d 7;; Package: emacs
7840ced1
GM
8
9;; This file is part of GNU Emacs.
10
eb3fa2cf 11;; GNU Emacs is free software: you can redistribute it and/or modify
7840ced1 12;; it under the terms of the GNU General Public License as published by
eb3fa2cf
GM
13;; the Free Software Foundation, either version 3 of the License, or
14;; (at your option) any later version.
7840ced1
GM
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
eb3fa2cf 22;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
7840ced1
GM
23
24;;; Commentary:
25
26;; Just-in-time fontification, triggered by C redisplay code.
27
28;;; Code:
29
30
7840ced1 31(eval-when-compile
6b2fcbb5
SM
32 (require 'cl)
33
bcacade9 34 (defmacro with-buffer-prepared-for-jit-lock (&rest body)
7840ced1
GM
35 "Execute BODY in current buffer, overriding several variables.
36Preserves the `buffer-modified-p' state of the current buffer."
7b4d9d3b 37 (declare (debug t))
d36b74ca
SM
38 `(let ((inhibit-point-motion-hooks t))
39 (with-silent-modifications
40 ,@body))))
7840ced1
GM
41\f
42;;; Customization.
43
623a1226
SM
44(defgroup jit-lock nil
45 "Font Lock support mode to fontify just-in-time."
623a1226
SM
46 :version "21.1"
47 :group 'font-lock)
48
7840ced1 49(defcustom jit-lock-chunk-size 500
9201cc28 50 "Jit-lock fontifies chunks of at most this many characters at a time.
45cb4c96
EZ
51
52This variable controls both display-time and stealth fontification."
7840ced1
GM
53 :type 'integer
54 :group 'jit-lock)
55
56
d0483d25 57(defcustom jit-lock-stealth-time nil
9201cc28 58 "Time in seconds to wait before beginning stealth fontification.
7840ced1 59Stealth fontification occurs if there is no input within this time.
f86292a9 60If nil, stealth fontification is never performed.
7840ced1
GM
61
62The value of this variable is used when JIT Lock mode is turned on."
63 :type '(choice (const :tag "never" nil)
d0483d25 64 (number :tag "seconds" :value 16))
7840ced1
GM
65 :group 'jit-lock)
66
67
4739237d 68(defcustom jit-lock-stealth-nice 0.5
9201cc28 69 "Time in seconds to pause between chunks of stealth fontification.
7840ced1
GM
70Each iteration of stealth fontification is separated by this amount of time,
71thus reducing the demand that stealth fontification makes on the system.
72If nil, means stealth fontification is never paused.
73To reduce machine load during stealth fontification, at the cost of stealth
74taking longer to fontify, you could increase the value of this variable.
75See also `jit-lock-stealth-load'."
76 :type '(choice (const :tag "never" nil)
f1180544 77 (number :tag "seconds"))
7840ced1 78 :group 'jit-lock)
f1180544 79
7840ced1
GM
80
81(defcustom jit-lock-stealth-load
82 (if (condition-case nil (load-average) (error)) 200)
9201cc28 83 "Load in percentage above which stealth fontification is suspended.
7840ced1
GM
84Stealth fontification pauses when the system short-term load average (as
85returned by the function `load-average' if supported) goes above this level,
86thus reducing the demand that stealth fontification makes on the system.
87If nil, means stealth fontification is never suspended.
88To reduce machine load during stealth fontification, at the cost of stealth
89taking longer to fontify, you could reduce the value of this variable.
90See also `jit-lock-stealth-nice'."
91 :type (if (condition-case nil (load-average) (error))
92 '(choice (const :tag "never" nil)
93 (integer :tag "load"))
94 '(const :format "%t: unsupported\n" nil))
95 :group 'jit-lock)
96
97
98(defcustom jit-lock-stealth-verbose nil
9201cc28 99 "If non-nil, means stealth fontification should show status messages."
7840ced1
GM
100 :type 'boolean
101 :group 'jit-lock)
102
103
f415f2d7
SM
104(defvaralias 'jit-lock-defer-contextually 'jit-lock-contextually)
105(defcustom jit-lock-contextually 'syntax-driven
9201cc28 106 "If non-nil, means fontification should be syntactically true.
f415f2d7 107If nil, means fontification occurs only on those lines modified. This
7840ced1
GM
108means where modification on a line causes syntactic change on subsequent lines,
109those subsequent lines are not refontified to reflect their new context.
f415f2d7 110If t, means fontification occurs on those lines modified and all
7840ced1 111subsequent lines. This means those subsequent lines are refontified to reflect
7b4d9d3b 112their new syntactic context, after `jit-lock-context-time' seconds.
f415f2d7 113If any other value, e.g., `syntax-driven', means syntactically true
7840ced1
GM
114fontification occurs only if syntactic fontification is performed using the
115buffer mode's syntax table, i.e., only if `font-lock-keywords-only' is nil.
116
117The value of this variable is used when JIT Lock mode is turned on."
118 :type '(choice (const :tag "never" nil)
119 (const :tag "always" t)
120 (other :tag "syntax-driven" syntax-driven))
121 :group 'jit-lock)
122
7b4d9d3b
SM
123(defcustom jit-lock-context-time 0.5
124 "Idle time after which text is contextually refontified, if applicable."
f5307782
JB
125 :type '(number :tag "seconds")
126 :group 'jit-lock)
127
8e069ce2 128(defcustom jit-lock-defer-time nil ;; 0.25
b743187d
SM
129 "Idle time after which deferred fontification should take place.
130If nil, fontification is not deferred."
131 :group 'jit-lock
132 :type '(choice (const :tag "never" nil)
133 (number :tag "seconds")))
7840ced1
GM
134\f
135;;; Variables that are not customizable.
136
137(defvar jit-lock-mode nil
138 "Non-nil means Just-in-time Lock mode is active.")
139(make-variable-buffer-local 'jit-lock-mode)
140
be390cb3
SM
141(defvar jit-lock-functions nil
142 "Functions to do the actual fontification.
143They are called with two arguments: the START and END of the region to fontify.")
a62e3c6f 144(make-variable-buffer-local 'jit-lock-functions)
7840ced1 145
623a1226 146(defvar jit-lock-context-unfontify-pos nil
a62e3c6f 147 "Consider text after this position as contextually unfontified.
bcacade9 148If nil, contextual fontification is disabled.")
623a1226 149(make-variable-buffer-local 'jit-lock-context-unfontify-pos)
7840ced1
GM
150
151
152(defvar jit-lock-stealth-timer nil
153 "Timer for stealth fontification in Just-in-time Lock mode.")
1063efe8
CY
154(defvar jit-lock-stealth-repeat-timer nil
155 "Timer for repeated stealth fontification in Just-in-time Lock mode.")
7b4d9d3b
SM
156(defvar jit-lock-context-timer nil
157 "Timer for context fontification in Just-in-time Lock mode.")
b743187d
SM
158(defvar jit-lock-defer-timer nil
159 "Timer for deferred fontification in Just-in-time Lock mode.")
160
623a1226 161(defvar jit-lock-defer-buffers nil
b743187d 162 "List of buffers with pending deferred fontification.")
1063efe8
CY
163(defvar jit-lock-stealth-buffers nil
164 "List of buffers that are being fontified stealthily.")
7840ced1
GM
165\f
166;;; JIT lock mode
167
7840ced1
GM
168(defun jit-lock-mode (arg)
169 "Toggle Just-in-time Lock mode.
bcacade9 170Turn Just-in-time Lock mode on if and only if ARG is non-nil.
7840ced1
GM
171Enable it automatically by customizing group `font-lock'.
172
173When Just-in-time Lock mode is enabled, fontification is different in the
174following ways:
175
176- Demand-driven buffer fontification triggered by Emacs C code.
177 This means initial fontification of the whole buffer does not occur.
178 Instead, fontification occurs when necessary, such as when scrolling
179 through the buffer would otherwise reveal unfontified areas. This is
180 useful if buffer fontification is too slow for large buffers.
181
182- Stealthy buffer fontification if `jit-lock-stealth-time' is non-nil.
183 This means remaining unfontified areas of buffers are fontified if Emacs has
184 been idle for `jit-lock-stealth-time' seconds, while Emacs remains idle.
185 This is useful if any buffer has any deferred fontification.
186
f415f2d7 187- Deferred context fontification if `jit-lock-contextually' is
7840ced1 188 non-nil. This means fontification updates the buffer corresponding to
7b4d9d3b 189 true syntactic context, after `jit-lock-context-time' seconds of Emacs
7840ced1
GM
190 idle time, while Emacs remains idle. Otherwise, fontification occurs
191 on modified lines only, and subsequent lines can remain fontified
192 corresponding to previous syntactic contexts. This is useful where
193 strings or comments span lines.
194
195Stealth fontification only occurs while the system remains unloaded.
196If the system load rises above `jit-lock-stealth-load' percent, stealth
197fontification is suspended. Stealth fontification intensity is controlled via
02b420eb 198the variable `jit-lock-stealth-nice'."
bcacade9
SM
199 (setq jit-lock-mode arg)
200 (cond (;; Turn Just-in-time Lock mode on.
201 jit-lock-mode
202
b743187d 203 ;; Mark the buffer for refontification.
a62e3c6f 204 (jit-lock-refontify)
02b420eb 205
7840ced1 206 ;; Install an idle timer for stealth fontification.
c94d5f40 207 (when (and jit-lock-stealth-time (null jit-lock-stealth-timer))
02b420eb 208 (setq jit-lock-stealth-timer
b743187d 209 (run-with-idle-timer jit-lock-stealth-time t
7840ced1
GM
210 'jit-lock-stealth-fontify)))
211
1063efe8
CY
212 ;; Create, but do not activate, the idle timer for repeated
213 ;; stealth fontification.
214 (when (and jit-lock-stealth-time (null jit-lock-stealth-repeat-timer))
215 (setq jit-lock-stealth-repeat-timer (timer-create))
216 (timer-set-function jit-lock-stealth-repeat-timer
217 'jit-lock-stealth-fontify '(t)))
218
b743187d
SM
219 ;; Init deferred fontification timer.
220 (when (and jit-lock-defer-time (null jit-lock-defer-timer))
221 (setq jit-lock-defer-timer
222 (run-with-idle-timer jit-lock-defer-time t
223 'jit-lock-deferred-fontify)))
224
623a1226 225 ;; Initialize contextual fontification if requested.
f415f2d7 226 (when (eq jit-lock-contextually t)
7b4d9d3b
SM
227 (unless jit-lock-context-timer
228 (setq jit-lock-context-timer
229 (run-with-idle-timer jit-lock-context-time t
230 'jit-lock-context-fontify)))
623a1226
SM
231 (setq jit-lock-context-unfontify-pos
232 (or jit-lock-context-unfontify-pos (point-max))))
bcacade9 233
a62e3c6f 234 ;; Setup our hooks.
bcacade9 235 (add-hook 'after-change-functions 'jit-lock-after-change nil t)
7840ced1
GM
236 (add-hook 'fontification-functions 'jit-lock-function))
237
238 ;; Turn Just-in-time Lock mode off.
239 (t
b743187d 240 ;; Cancel our idle timers.
7b4d9d3b
SM
241 (when (and (or jit-lock-stealth-timer jit-lock-defer-timer
242 jit-lock-context-timer)
b743187d
SM
243 ;; Only if there's no other buffer using them.
244 (not (catch 'found
245 (dolist (buf (buffer-list))
246 (with-current-buffer buf
247 (when jit-lock-mode (throw 'found t)))))))
248 (when jit-lock-stealth-timer
249 (cancel-timer jit-lock-stealth-timer)
250 (setq jit-lock-stealth-timer nil))
7b4d9d3b
SM
251 (when jit-lock-context-timer
252 (cancel-timer jit-lock-context-timer)
253 (setq jit-lock-context-timer nil))
b743187d
SM
254 (when jit-lock-defer-timer
255 (cancel-timer jit-lock-defer-timer)
256 (setq jit-lock-defer-timer nil)))
7840ced1 257
a62e3c6f 258 ;; Remove hooks.
02b420eb 259 (remove-hook 'after-change-functions 'jit-lock-after-change t)
7840ced1
GM
260 (remove-hook 'fontification-functions 'jit-lock-function))))
261
c94d5f40 262(defun jit-lock-register (fun &optional contextual)
8a677d4f
SM
263 "Register FUN as a fontification function to be called in this buffer.
264FUN will be called with two arguments START and END indicating the region
c94d5f40
SM
265that needs to be (re)fontified.
266If non-nil, CONTEXTUAL means that a contextual fontification would be useful."
f8bacc70 267 (add-hook 'jit-lock-functions fun nil t)
f415f2d7
SM
268 (when (and contextual jit-lock-contextually)
269 (set (make-local-variable 'jit-lock-contextually) t))
f8bacc70
SM
270 (jit-lock-mode t))
271
272(defun jit-lock-unregister (fun)
8a677d4f 273 "Unregister FUN as a fontification function.
f8bacc70
SM
274Only applies to the current buffer."
275 (remove-hook 'jit-lock-functions fun t)
a62e3c6f 276 (unless jit-lock-functions (jit-lock-mode nil)))
7840ced1 277
02b420eb
SM
278;; This function is used to prevent font-lock-fontify-buffer from
279;; fontifying eagerly the whole buffer. This is important for
280;; things like CWarn mode which adds/removes a few keywords and
281;; does a refontify (which takes ages on large files).
a62e3c6f
SM
282(defun jit-lock-refontify (&optional beg end)
283 "Force refontification of the region BEG..END (default whole buffer)."
bcacade9 284 (with-buffer-prepared-for-jit-lock
5a5987eb
SM
285 (save-restriction
286 (widen)
b743187d
SM
287 (put-text-property (or beg (point-min)) (or end (point-max))
288 'fontified nil))))
7840ced1
GM
289\f
290;;; On demand fontification.
291
292(defun jit-lock-function (start)
293 "Fontify current buffer starting at position START.
294This function is added to `fontification-functions' when `jit-lock-mode'
295is active."
74614ac6 296 (when (and jit-lock-mode (not memory-full))
0902822d 297 (if (null jit-lock-defer-timer)
b743187d
SM
298 ;; No deferral.
299 (jit-lock-fontify-now start (+ start jit-lock-chunk-size))
300 ;; Record the buffer for later fontification.
623a1226
SM
301 (unless (memq (current-buffer) jit-lock-defer-buffers)
302 (push (current-buffer) jit-lock-defer-buffers))
b743187d
SM
303 ;; Mark the area as defer-fontified so that the redisplay engine
304 ;; is happy and so that the idle timer can find the places to fontify.
305 (with-buffer-prepared-for-jit-lock
306 (put-text-property start
307 (next-single-property-change
308 start 'fontified nil
309 (min (point-max) (+ start jit-lock-chunk-size)))
310 'fontified 'defer)))))
a62e3c6f
SM
311
312(defun jit-lock-fontify-now (&optional start end)
313 "Fontify current buffer from START to END.
314Defaults to the whole buffer. END can be out of bounds."
bcacade9 315 (with-buffer-prepared-for-jit-lock
60bffb78 316 (save-excursion
c9cf2e67
SM
317 (unless start (setq start (point-min)))
318 (setq end (if end (min end (point-max)) (point-max)))
319 ;; This did bind `font-lock-beginning-of-syntax-function' to
320 ;; nil at some point, for an unknown reason. Don't do this; it
321 ;; can make highlighting slow due to expensive calls to
322 ;; `parse-partial-sexp' in function
323 ;; `font-lock-fontify-syntactically-region'. Example: paging
324 ;; from the end of a buffer to its start, can do repeated
325 ;; `parse-partial-sexp' starting from `point-min', which can
326 ;; take a long time in a large buffer.
663e1660 327 (let ((orig-start start) next)
c9cf2e67
SM
328 (save-match-data
329 ;; Fontify chunks beginning at START. The end of a
330 ;; chunk is either `end', or the start of a region
331 ;; before `end' that has already been fontified.
c1860747 332 (while (and start (< start end))
c9cf2e67
SM
333 ;; Determine the end of this chunk.
334 (setq next (or (text-property-any start end 'fontified t)
335 end))
336
337 ;; Decide which range of text should be fontified.
338 ;; The problem is that START and NEXT may be in the
339 ;; middle of something matched by a font-lock regexp.
340 ;; Until someone has a better idea, let's start
341 ;; at the start of the line containing START and
342 ;; stop at the start of the line following NEXT.
343 (goto-char next) (setq next (line-beginning-position 2))
344 (goto-char start) (setq start (line-beginning-position))
f1180544 345
c4ac63d0
SM
346 ;; Make sure the contextual refontification doesn't re-refontify
347 ;; what's already been refontified.
c4ac63d0
SM
348 (when (and jit-lock-context-unfontify-pos
349 (< jit-lock-context-unfontify-pos next)
7aaf6f17
SM
350 (>= jit-lock-context-unfontify-pos start)
351 ;; Don't move boundary forward if we have to
352 ;; refontify previous text. Otherwise, we risk moving
353 ;; it past the end of the multiline property and thus
354 ;; forget about this multiline region altogether.
355 (not (get-text-property start 'jit-lock-defer-multiline)))
c4ac63d0
SM
356 (setq jit-lock-context-unfontify-pos next))
357
c9cf2e67
SM
358 ;; Fontify the chunk, and mark it as fontified.
359 ;; We mark it first, to make sure that we don't indefinitely
360 ;; re-execute this fontification if an error occurs.
361 (put-text-property start next 'fontified t)
f415f2d7
SM
362 (condition-case err
363 (run-hook-with-args 'jit-lock-functions start next)
364 ;; If the user quits (which shouldn't happen in normal on-the-fly
365 ;; jit-locking), make sure the fontification will be performed
366 ;; before displaying the block again.
367 (quit (put-text-property start next 'fontified nil)
368 (funcall 'signal (car err) (cdr err))))
c9cf2e67 369
663e1660
SM
370 ;; The redisplay engine has already rendered the buffer up-to
371 ;; `orig-start' and won't notice if the above jit-lock-functions
372 ;; changed the appearance of any part of the buffer prior
373 ;; to that. So if `start' is before `orig-start', we need to
374 ;; cause a new redisplay cycle after this one so that any changes
375 ;; are properly reflected on screen.
376 ;; To make such repeated redisplay happen less often, we can
377 ;; eagerly extend the refontified region with
378 ;; jit-lock-after-change-extend-region-functions.
379 (when (< start orig-start)
be956324 380 (run-with-timer 0 nil 'jit-lock-force-redisplay
2a8edf31 381 (current-buffer) start orig-start))
663e1660 382
c9cf2e67
SM
383 ;; Find the start of the next chunk, if any.
384 (setq start (text-property-any next end 'fontified nil))))))))
7840ced1 385
be956324
SM
386(defun jit-lock-force-redisplay (buf start end)
387 "Force the display engine to re-render buffer BUF from START to END."
388 (with-current-buffer buf
389 (with-buffer-prepared-for-jit-lock
390 ;; Don't cause refontification (it's already been done), but just do
391 ;; some random buffer change, so as to force redisplay.
32937629 392 (put-text-property start end 'fontified t))))
2a8edf31
KS
393
394
7840ced1
GM
395\f
396;;; Stealth fontification.
397
398(defsubst jit-lock-stealth-chunk-start (around)
6dea7173 399 "Return the start of the next chunk to fontify around position AROUND.
7840ced1 400Value is nil if there is nothing more to fontify."
8c887c51
GM
401 (if (zerop (buffer-size))
402 nil
403 (save-restriction
404 (widen)
b743187d 405 (let* ((next (text-property-not-all around (point-max) 'fontified t))
8c887c51
GM
406 (prev (previous-single-property-change around 'fontified))
407 (prop (get-text-property (max (point-min) (1- around))
408 'fontified))
409 (start (cond
410 ((null prev)
411 ;; There is no property change between AROUND
412 ;; and the start of the buffer. If PROP is
413 ;; non-nil, everything in front of AROUND is
414 ;; fontified, otherwise nothing is fontified.
b743187d 415 (if (eq prop t)
8c887c51
GM
416 nil
417 (max (point-min)
418 (- around (/ jit-lock-chunk-size 2)))))
b743187d 419 ((eq prop t)
8c887c51 420 ;; PREV is the start of a region of fontified
bcacade9 421 ;; text containing AROUND. Start fontifying a
8c887c51
GM
422 ;; chunk size before the end of the unfontified
423 ;; region in front of that.
424 (max (or (previous-single-property-change prev 'fontified)
425 (point-min))
426 (- prev jit-lock-chunk-size)))
427 (t
428 ;; PREV is the start of a region of unfontified
429 ;; text containing AROUND. Start at PREV or
430 ;; chunk size in front of AROUND, whichever is
431 ;; nearer.
432 (max prev (- around jit-lock-chunk-size)))))
433 (result (cond ((null start) next)
434 ((null next) start)
435 ((< (- around start) (- next around)) start)
436 (t next))))
437 result))))
f1180544 438
1063efe8 439(defun jit-lock-stealth-fontify (&optional repeat)
7840ced1 440 "Fontify buffers stealthily.
1063efe8
CY
441This function is called repeatedly after Emacs has become idle for
442`jit-lock-stealth-time' seconds. Optional argument REPEAT is expected
443non-nil in a repeated invocation of this function."
444 ;; Cancel timer for repeated invocations.
445 (unless repeat
446 (cancel-timer jit-lock-stealth-repeat-timer))
7840ced1 447 (unless (or executing-kbd-macro
74614ac6 448 memory-full
1063efe8
CY
449 (window-minibuffer-p (selected-window))
450 ;; For first invocation set up `jit-lock-stealth-buffers'.
451 ;; In repeated invocations it's already been set up.
452 (null (if repeat
453 jit-lock-stealth-buffers
454 (setq jit-lock-stealth-buffers (buffer-list)))))
455 (let ((buffer (car jit-lock-stealth-buffers))
456 (delay 0)
7840ced1 457 minibuffer-auto-raise
1063efe8
CY
458 message-log-max
459 start)
460 (if (and jit-lock-stealth-load
461 (> (car (load-average)) jit-lock-stealth-load))
462 ;; Wait a little if load is too high.
463 (setq delay jit-lock-stealth-time)
464 (if (buffer-live-p buffer)
465 (with-current-buffer buffer
466 (if (and jit-lock-mode
467 (setq start (jit-lock-stealth-chunk-start (point))))
468 ;; Fontify one block of at most `jit-lock-chunk-size'
469 ;; characters.
470 (with-temp-message (if jit-lock-stealth-verbose
471 (concat "JIT stealth lock "
472 (buffer-name)))
473 (jit-lock-fontify-now start
474 (+ start jit-lock-chunk-size))
475 ;; Run again after `jit-lock-stealth-nice' seconds.
476 (setq delay (or jit-lock-stealth-nice 0)))
477 ;; Nothing to fontify here. Remove this buffer from
478 ;; `jit-lock-stealth-buffers' and run again immediately.
479 (setq jit-lock-stealth-buffers (cdr jit-lock-stealth-buffers))))
480 ;; Buffer is no longer live. Remove it from
481 ;; `jit-lock-stealth-buffers' and run again immediately.
482 (setq jit-lock-stealth-buffers (cdr jit-lock-stealth-buffers))))
483 ;; Call us again.
484 (when jit-lock-stealth-buffers
485 (timer-set-idle-time jit-lock-stealth-repeat-timer (current-idle-time))
486 (timer-inc-time jit-lock-stealth-repeat-timer delay)
487 (timer-activate-when-idle jit-lock-stealth-repeat-timer t)))))
7840ced1
GM
488
489\f
490;;; Deferred fontification.
491
b743187d
SM
492(defun jit-lock-deferred-fontify ()
493 "Fontify what was deferred."
74614ac6 494 (when (and jit-lock-defer-buffers (not memory-full))
b743187d 495 ;; Mark the deferred regions back to `fontified = nil'
623a1226 496 (dolist (buffer jit-lock-defer-buffers)
b743187d
SM
497 (when (buffer-live-p buffer)
498 (with-current-buffer buffer
499 ;; (message "Jit-Defer %s" (buffer-name))
500 (with-buffer-prepared-for-jit-lock
501 (let ((pos (point-min)))
502 (while
503 (progn
504 (when (eq (get-text-property pos 'fontified) 'defer)
505 (put-text-property
506 pos (setq pos (next-single-property-change
507 pos 'fontified nil (point-max)))
508 'fontified nil))
509 (setq pos (next-single-property-change pos 'fontified)))))))))
623a1226 510 (setq jit-lock-defer-buffers nil)
b743187d 511 ;; Force fontification of the visible parts.
0902822d 512 (let ((jit-lock-defer-timer nil))
b743187d
SM
513 ;; (message "Jit-Defer Now")
514 (sit-for 0)
515 ;; (message "Jit-Defer Done")
516 )))
f1180544 517
b743187d 518
7b4d9d3b
SM
519(defun jit-lock-context-fontify ()
520 "Refresh fontification to take new context into account."
74614ac6
RS
521 (unless memory-full
522 (dolist (buffer (buffer-list))
523 (with-current-buffer buffer
524 (when jit-lock-context-unfontify-pos
525 ;; (message "Jit-Context %s" (buffer-name))
526 (save-restriction
527 (widen)
528 (when (and (>= jit-lock-context-unfontify-pos (point-min))
529 (< jit-lock-context-unfontify-pos (point-max)))
530 ;; If we're in text that matches a complex multi-line
531 ;; font-lock pattern, make sure the whole text will be
532 ;; redisplayed eventually.
533 ;; Despite its name, we treat jit-lock-defer-multiline here
534 ;; rather than in jit-lock-defer since it has to do with multiple
535 ;; lines, i.e. with context.
536 (when (get-text-property jit-lock-context-unfontify-pos
537 'jit-lock-defer-multiline)
538 (setq jit-lock-context-unfontify-pos
539 (or (previous-single-property-change
540 jit-lock-context-unfontify-pos
541 'jit-lock-defer-multiline)
542 (point-min))))
543 (with-buffer-prepared-for-jit-lock
544 ;; Force contextual refontification.
545 (remove-text-properties
546 jit-lock-context-unfontify-pos (point-max)
547 '(fontified nil jit-lock-defer-multiline nil)))
548 (setq jit-lock-context-unfontify-pos (point-max)))))))))
7b4d9d3b 549
663e1660
SM
550(defvar jit-lock-start) (defvar jit-lock-end) ; Dynamically scoped variables.
551(defvar jit-lock-after-change-extend-region-functions nil
552 "Hook that can extend the text to refontify after a change.
553This is run after every buffer change. The functions are called with
554the three arguments of `after-change-functions': START END OLD-LEN.
555The extended region to refontify is returned indirectly by modifying
556the variables `jit-lock-start' and `jit-lock-end'.
557
9fd762b0
SM
558Note that extending the region this way is not strictly necessary, except
559that the nature of the redisplay code tends to otherwise leave some of
560the rehighlighted text displayed with the old highlight until the next
561redisplay (see comment about repeated redisplay in `jit-lock-fontify-now').")
663e1660 562
7840ced1
GM
563(defun jit-lock-after-change (start end old-len)
564 "Mark the rest of the buffer as not fontified after a change.
565Installed on `after-change-functions'.
566START and END are the start and end of the changed text. OLD-LEN
567is the pre-change length.
568This function ensures that lines following the change will be refontified
569in case the syntax of those lines has changed. Refontification
570will take place when text is fontified stealthily."
74614ac6 571 (when (and jit-lock-mode (not memory-full))
663e1660
SM
572 (let ((jit-lock-start start)
573 (jit-lock-end end))
574 (with-buffer-prepared-for-jit-lock
575 (run-hook-with-args 'jit-lock-after-change-extend-region-functions
576 start end old-len)
577 ;; Make sure we change at least one char (in case of deletions).
578 (setq jit-lock-end (min (max jit-lock-end (1+ start)) (point-max)))
579 ;; Request refontification.
580 (put-text-property jit-lock-start jit-lock-end 'fontified nil))
581 ;; Mark the change for deferred contextual refontification.
582 (when jit-lock-context-unfontify-pos
583 (setq jit-lock-context-unfontify-pos
584 ;; Here we use `start' because nothing guarantees that the
585 ;; text between start and end will be otherwise refontified:
586 ;; usually it will be refontified by virtue of being
587 ;; displayed, but if it's outside of any displayed area in the
588 ;; buffer, only jit-lock-context-* will re-fontify it.
589 (min jit-lock-context-unfontify-pos jit-lock-start))))))
f1180544 590
7840ced1
GM
591(provide 'jit-lock)
592
e8af40ee 593;;; jit-lock.el ends here