Skip to content

Commit 919884b

Browse files
committed
Remove unused function args
1 parent 6d71712 commit 919884b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: clojure-ts-mode.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -750,7 +750,7 @@ See `treesit-simple-indent-rules'."
750750
;; Symbols starting with this are false positives
751751
(rx line-start (or "default" "deflate" "defer"))
752752
first-child))
753-
(not (clojure-ts--match-with-metadata node parent bol))
753+
(not (clojure-ts--match-with-metadata node))
754754
(clojure-ts--symbol-matches-p
755755
clojure-ts--symbols-with-body-expressions-regexp
756756
first-child)))))
@@ -822,7 +822,7 @@ forms like deftype, defrecord, reify, proxy, etc."
822822
(clojure-ts--match-fn-docstring parent)
823823
(clojure-ts--match-method-docstring parent))))
824824

825-
(defun clojure-ts--match-with-metadata (node _parent _bol)
825+
(defun clojure-ts--match-with-metadata (node)
826826
"Match NODE when it has metadata."
827827
(let ((prev-sibling (treesit-node-prev-sibling node)))
828828
(and prev-sibling

0 commit comments

Comments
 (0)