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