]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix string fontification on python-ts-mode (bug#60599)
authorYuan Fu <casouri@gmail.com>
Sun, 8 Jan 2023 02:41:28 +0000 (18:41 -0800)
committerYuan Fu <casouri@gmail.com>
Sun, 8 Jan 2023 02:44:17 +0000 (18:44 -0800)
* lisp/progmodes/python.el:
(python--treesit-fontify-string): Generalize and skip anything
before the first quote character.

lisp/progmodes/python.el

index e6ded7a0646f0c1b270fad197428e34aee7a50ad..21d16db287c8788b7a1f8e5c5eddce25104ebbdd 100644 (file)
@@ -1067,8 +1067,11 @@ fontified."
                                "expression_statement"))
                    'font-lock-doc-face
                  'font-lock-string-face)))
-    (when (eq (char-after string-beg) ?f)
-      (cl-incf string-beg))
+    ;; Don't highlight string prefixes like f/r/b.
+    (save-excursion
+      (goto-char string-beg)
+      (when (search-forward "\"" string-end t)
+        (setq string-beg (match-beginning 0))))
     (treesit-fontify-with-override
      string-beg string-end face override start end)))