]> git.eshelyaron.com Git - emacs.git/commitdiff
; Remove unused tree-sitter functions
authorYuan Fu <casouri@gmail.com>
Fri, 4 Nov 2022 16:57:32 +0000 (09:57 -0700)
committerYuan Fu <casouri@gmail.com>
Fri, 4 Nov 2022 16:57:32 +0000 (09:57 -0700)
They didn't turn out to be very useful.

* lisp/treesit.el (treesit-set-ranges)
(treesit-get-ranges): Remove functions.

lisp/treesit.el

index d6feca2f4a365b6d086a2bb1cae23f192959825a..84c3c703273b302e758a9e7e5c4bb7f19a14ed02 100644 (file)
@@ -151,29 +151,6 @@ Assumes parser ranges are up-to-date."
   (when treesit-language-at-point-function
     (funcall treesit-language-at-point-function position)))
 
-(defun treesit-set-ranges (parser-or-lang ranges)
-  "Set the ranges of PARSER-OR-LANG to RANGES."
-  (treesit-parser-set-included-ranges
-   (cond ((symbolp parser-or-lang)
-          (or (treesit-parser-create parser-or-lang)
-              (error "Cannot find a parser for %s" parser-or-lang)))
-         ((treesit-parser-p parser-or-lang)
-          parser-or-lang)
-         (t (error "Expecting a parser or language, but got %s"
-                   parser-or-lang)))
-   ranges))
-
-(defun treesit-get-ranges (parser-or-lang)
-  "Get the ranges of PARSER-OR-LANG."
-  (treesit-parser-included-ranges
-   (cond ((symbolp parser-or-lang)
-          (or (treesit-parser-create parser-or-lang)
-              (error "Cannot find a parser for %s" parser-or-lang)))
-         ((treesit-parser-p parser-or-lang)
-          parser-or-lang)
-         (t (error "Expecting a parser or language, but got %s"
-                   parser-or-lang)))))
-
 ;;; Node API supplement
 
 (defun treesit-node-buffer (node)