From: nverno Date: Sun, 12 Nov 2023 19:36:09 +0000 (-0800) Subject: Fix font-lock for string escapes in lua-ts-mode X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f054e9924cc3fda38a710b76db668cfab8b7d1d9;p=emacs.git Fix font-lock for string escapes in lua-ts-mode * lua-ts-mode.el (lua-ts--font-lock-settings): Apply font-lock to the entire string containing an escape sequence. (Bug#67135) --- diff --git a/lisp/progmodes/lua-ts-mode.el b/lisp/progmodes/lua-ts-mode.el index 4856888344c..a910d759c83 100644 --- a/lisp/progmodes/lua-ts-mode.el +++ b/lisp/progmodes/lua-ts-mode.el @@ -148,10 +148,6 @@ :feature 'delimiter '(["," ";"] @font-lock-delimiter-face) - :language 'lua - :feature 'escape - '((escape_sequence) @font-lock-escape-face) - :language 'lua :feature 'constant '((variable_list @@ -213,6 +209,11 @@ :feature 'string '((string) @font-lock-string-face) + :language 'lua + :feature 'escape + :override t + '((escape_sequence) @font-lock-escape-face) + :language 'lua :feature 'comment '((comment) @font-lock-comment-face