From: Yuan Fu Date: Thu, 10 Nov 2022 18:34:57 +0000 (-0800) Subject: Utilize new face font-lock-escape-face in python-mode X-Git-Tag: emacs-29.0.90~1684 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2ec403f777adf39d3e972667513086f2053530dd;p=emacs.git Utilize new face font-lock-escape-face in python-mode * lisp/progmodes/python.el (python--treesit-settings): Use font-lock-escape-face rather than font-lock-constant-face. --- diff --git a/lisp/progmodes/python.el b/lisp/progmodes/python.el index 61f29dd005c..a5d02d0fcba 100644 --- a/lisp/progmodes/python.el +++ b/lisp/progmodes/python.el @@ -1118,7 +1118,7 @@ be fontified." :feature 'escape-sequence :language 'python :override t - '((escape_sequence) @font-lock-constant-face)) + '((escape_sequence) @font-lock-escape-face)) "Tree-sitter font-lock settings.")