]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix compiler warning in html-ts-mode.el
authorPo Lu <luangruo@yahoo.com>
Mon, 10 Mar 2025 12:43:02 +0000 (20:43 +0800)
committerEshel Yaron <me@eshelyaron.com>
Wed, 12 Mar 2025 18:54:19 +0000 (19:54 +0100)
* lisp/textmodes/html-ts-mode.el (treesit-node-end)
(treesit-node-start): Declare.

(cherry picked from commit 7a72589847107f26d0ebdc22f9cfa61962d02af4)

lisp/textmodes/html-ts-mode.el

index f6d20685ea3718f882efaa5128e1855989b7a3be..5df489db3e762c64cf247724c7adaa7f4e970950 100644 (file)
@@ -125,6 +125,9 @@ Return nil if there is no name or if NODE is not a defun node."
      (treesit-search-subtree node "\\`tag_name\\'" nil nil 2)
      t)))
 
+(declare-function treesit-node-end "treesit.c")
+(declare-function treesit-node-start "treesit.c")
+
 (defun html-ts-mode--outline-predicate (node)
   "Limit outlines to multi-line elements."
   (when (string-match-p "element" (treesit-node-type node))