From f054e9924cc3fda38a710b76db668cfab8b7d1d9 Mon Sep 17 00:00:00 2001 From: nverno Date: Sun, 12 Nov 2023 11:36:09 -0800 Subject: [PATCH] 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) --- lisp/progmodes/lua-ts-mode.el | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 -- 2.39.2