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