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