From: Theodor Thornhill Date: Thu, 8 Dec 2022 15:17:49 +0000 (+0100) Subject: Fix escape-sequence feature in typescript-ts-mode (bug#59906) X-Git-Tag: emacs-29.0.90~1272 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7141920c6afdd9ead4a94f2a3314a8c1097d1b6b;p=emacs.git Fix escape-sequence feature in typescript-ts-mode (bug#59906) * lisp/progmodes/typescript-ts-mode.el: (typescript-ts-mode, tsx-ts-mode): Use escape-sequence feature. --- diff --git a/lisp/progmodes/typescript-ts-mode.el b/lisp/progmodes/typescript-ts-mode.el index 243f6146ae7..c4a5bd37e05 100644 --- a/lisp/progmodes/typescript-ts-mode.el +++ b/lisp/progmodes/typescript-ts-mode.el @@ -361,8 +361,7 @@ Argument LANGUAGE is either `typescript' or `tsx'." (setq-local treesit-font-lock-settings (typescript-ts-mode--font-lock-settings 'typescript)) (setq-local treesit-font-lock-feature-list - '((comment declaration) - (keyword string) + '((comment declaration keyword string escape-sequence) (constant expression identifier number pattern property) (bracket delimiter))) @@ -396,8 +395,7 @@ Argument LANGUAGE is either `typescript' or `tsx'." (setq-local treesit-font-lock-settings (typescript-ts-mode--font-lock-settings 'tsx)) (setq-local treesit-font-lock-feature-list - '((comment declaration) - (keyword string) + '((comment declaration keyword string escape-sequence) (constant expression identifier jsx number pattern property) (bracket delimiter)))