diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-08-01 18:58:18 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2006-08-01 18:58:18 +0000 |
commit | 4cffd2213707e403e379ec24934ec37edba3b6d3 (patch) | |
tree | b55dcbf06decfa2a976c050ee6c5e5ead162c07e /lisp/font-lock.el | |
parent | 374f4f51dffcca37d7a048de79290877f4cc074e (diff) | |
download | emacs-4cffd2213707e403e379ec24934ec37edba3b6d3.tar.gz |
(font-lock-extend-jit-lock-region-after-change): New fun.
(font-lock-turn-on-thing-lock): Use it.
Diffstat (limited to 'lisp/font-lock.el')
-rw-r--r-- | lisp/font-lock.el | 35 |
1 files changed, 34 insertions, 1 deletions
diff --git a/lisp/font-lock.el b/lisp/font-lock.el index 207d3b88f86..ecf54895c1c 100644 --- a/lisp/font-lock.el +++ b/lisp/font-lock.el @@ -893,7 +893,11 @@ The value of this variable is used when Font Lock mode is turned on." (set (make-local-variable 'font-lock-fontified) t) ;; Use jit-lock. (jit-lock-register 'font-lock-fontify-region - (not font-lock-keywords-only)))))) + (not font-lock-keywords-only)) + ;; Tell jit-lock how we extend the region to refontify. + (add-hook 'jit-lock-after-change-extend-region-functions + 'font-lock-extend-jit-lock-region-after-change + nil t))))) (defun font-lock-turn-off-thing-lock () (cond ((and (boundp 'fast-lock-mode) fast-lock-mode) @@ -1096,6 +1100,35 @@ what properties to clear before refontifying a region.") end (progn (goto-char end) (line-beginning-position 2)))) (font-lock-fontify-region beg end))))) +(defvar jit-lock-start) (defvar jit-lock-end) +(defun font-lock-extend-jit-lock-region-after-change (beg end old-len) + (let ((region (font-lock-extend-region beg end old-len))) + (if region + (setq jit-lock-start (min jit-lock-start (car region)) + jit-lock-end (max jit-lock-end (cdr region))) + (save-excursion + (goto-char beg) + (forward-line 0) + (setq jit-lock-start + (min jit-lock-start + (if (and (not (eobp)) + (get-text-property (point) 'font-lock-multiline)) + (or (previous-single-property-change + (point) 'font-lock-multiline) + (point-min)) + (point)))) + (goto-char end) + (forward-line 1) + (setq jit-lock-end + (max jit-lock-end + (if (and (not (bobp)) + (get-text-property (1- (point)) + 'font-lock-multiline)) + (or (next-single-property-change + (1- (point)) 'font-lock-multiline) + (point-max)) + (point)))))))) + (defun font-lock-fontify-block (&optional arg) "Fontify some lines the way `font-lock-fontify-buffer' would. The lines could be a function or paragraph, or a specified number of lines. |