]> git.eshelyaron.com Git - emacs.git/commitdiff
Escape percent character in treesit--inspect-name (bug#65540)
authorYuan Fu <casouri@gmail.com>
Sun, 27 Aug 2023 21:49:56 +0000 (14:49 -0700)
committerYuan Fu <casouri@gmail.com>
Sun, 27 Aug 2023 21:50:43 +0000 (14:50 -0700)
* lisp/treesit.el (treesit-inspect-node-at-point): Escape percent.

lisp/treesit.el

index 04d460fdea4b04cf7742d0a608327bd38b2b6123..41ebc62fca6c7420c5688ef6299b1c4082ce8d3a 100644 (file)
@@ -2459,7 +2459,8 @@ in `treesit-parser-list'."
                         'bold nil))
         name
         (if (treesit-node-check node 'named) ")" "\""))))
-    (setq treesit--inspect-name name)
+    ;; Escape the percent character for mode-line. (Bug#65540)
+    (setq treesit--inspect-name (string-replace "%" "%%" name))
     (force-mode-line-update)
     (when arg
       (if node-list