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