Tree-sitter use with-silent-modifications like jit-lock (bug#64321)
* lisp/treesit.el (treesit--font-lock-notifier): Use with-silent-modifications when marking modified text to be fontified by jit-lock. This is what jit-lock itself does.
This commit is contained in:
parent
11cead0d73
commit
2c90ade09a
1 changed files with 2 additions and 1 deletions
|
@ -1072,7 +1072,8 @@ parser notifying of the change."
|
|||
(when treesit--font-lock-verbose
|
||||
(message "Notifier received range: %s-%s"
|
||||
(car range) (cdr range)))
|
||||
(put-text-property (car range) (cdr range) 'fontified nil))))
|
||||
(with-silent-modifications
|
||||
(put-text-property (car range) (cdr range) 'fontified nil)))))
|
||||
|
||||
;;; Indent
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue