]> git.eshelyaron.com Git - emacs.git/commitdiff
; Rename c-ts-fontify-error to c-ts-mode--fontify-error
authorYuan Fu <casouri@gmail.com>
Tue, 6 Dec 2022 08:26:51 +0000 (00:26 -0800)
committerYuan Fu <casouri@gmail.com>
Tue, 6 Dec 2022 21:43:58 +0000 (13:43 -0800)
* lisp/progmodes/c-ts-mode.el (c-ts-mode--font-lock-settings)
(c-ts-fontify-error): Rename.

lisp/progmodes/c-ts-mode.el

index 1691a5c31d6b1fdce0e6fd2b1f9f08e8b0b97130..0c66b4959e0afff90516628af7b0fc79e6ab00c8 100644 (file)
@@ -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'."