]> git.eshelyaron.com Git - emacs.git/commitdiff
; Fix treesit-query-range docstring
authorYuan Fu <casouri@gmail.com>
Wed, 9 Nov 2022 04:43:24 +0000 (20:43 -0800)
committerYuan Fu <casouri@gmail.com>
Wed, 9 Nov 2022 23:51:12 +0000 (15:51 -0800)
* lisp/treesit.el (treesit-query-range): Change signature, change
reference of treesit-query-in to that of treesit-query-capture.

lisp/treesit.el

index c2a15835b3b07570c7b77e4ce5ac12d04423d147..766e0ac4f1ad30babd574dbe680f6d454dbc534f 100644 (file)
@@ -340,15 +340,15 @@ See `treesit-query-capture' for QUERY."
        (treesit-parser-root-node parser)
        query))))
 
-(defun treesit-query-range (source query &optional beg end)
+(defun treesit-query-range (node query &optional beg end)
   "Query the current buffer and return ranges of captured nodes.
 
-QUERY, SOURCE, BEG, END are the same as in
-`treesit-query-in'.  This function returns a list
+QUERY, NODE, BEG, END are the same as in
+`treesit-query-capture'.  This function returns a list
 of (START . END), where START and END specifics the range of each
 captured node.  Capture names don't matter."
   (cl-loop for capture
-           in (treesit-query-capture source query beg end)
+           in (treesit-query-capture node query beg end)
            for node = (cdr capture)
            collect (cons (treesit-node-start node)
                          (treesit-node-end node))))