]> git.eshelyaron.com Git - emacs.git/commitdiff
; * lisp/progmodes/js.el (js--fontify-template-string): Fix typo.
authorYuan Fu <casouri@gmail.com>
Fri, 4 Nov 2022 08:18:59 +0000 (01:18 -0700)
committerYuan Fu <casouri@gmail.com>
Fri, 4 Nov 2022 08:18:59 +0000 (01:18 -0700)
lisp/progmodes/js.el

index 01da87f6be593960e8cbc5f28542f0335465b4c9..ab8239db9ef25c9018790bb8fe6b7158f7933463 100644 (file)
@@ -3588,7 +3588,7 @@ This function is intended for use in `after-change-functions'."
 
 (defun js--fontify-template-string (node override start end &rest _)
   "Fontify template string but not substitution inside it.
-NODE is the template_string node. START and END marks the region
+NODE is the template_string node.  START and END marks the region
 to be fontified.
 
 OVERRIDE is the override flag described in
@@ -3605,7 +3605,7 @@ OVERRIDE is the override flag described in
                                  "template_substitution")
                           (treesit-node-start child)
                         (treesit-node-end child))))
-        (setq font-beg (max beg font-beg))
+        (setq font-beg (max start font-beg))
         (when (< font-beg end)
           (treesit-fontify-with-override
            font-beg font-end 'font-lock-string-face override)))