diff options
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/c-ts-mode.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/c-ts-mode.el b/lisp/progmodes/c-ts-mode.el index 1691a5c31d6..0c66b4959e0 100644 --- a/lisp/progmodes/c-ts-mode.el +++ b/lisp/progmodes/c-ts-mode.el @@ -319,7 +319,7 @@ MODE is either `c' or `cpp'." :language mode :feature 'error - '((ERROR) @c-ts-fontify-error) + '((ERROR) @c-ts-mode--fontify-error) :feature 'escape-sequence :language mode @@ -421,7 +421,7 @@ This function corrects the fontification on the colon in (treesit-node-start arg) (treesit-node-end arg) 'default override start end)))))) -(defun c-ts-fontify-error (node override start end &rest _) +(defun c-ts-mode--fontify-error (node override start end &rest _) "Fontify the error nodes. For NODE, OVERRIDE, START, and END, see `treesit-font-lock-rules'." |