File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -738,7 +738,7 @@ https://github.com/weavejester/cljfmt/blob/fb26b22f569724b05c93eb2502592dfc2de89
738
738
(or (clojure-ts--symbol-node-p first-child)
739
739
(clojure-ts--keyword-node-p first-child)))))
740
740
741
- (defun clojure-ts--match-expression-in-body (node parent _bol )
741
+ (defun clojure-ts--match-expression-in-body (node parent bol )
742
742
" Match NODE if it is an expression used in a body argument.
743
743
PARENT is expected to be a list literal.
744
744
See `treesit-simple-indent-rules' ."
@@ -751,7 +751,7 @@ See `treesit-simple-indent-rules'."
751
751
; ; Symbols starting with this are false positives
752
752
(rx line-start (or " default" " deflate" " defer" ))
753
753
first-child))
754
- (not (clojure-ts--match-with-meta node parent _bol ))
754
+ (not (clojure-ts--match-with-meta node parent bol ))
755
755
(clojure-ts--symbol-matches-p
756
756
clojure-ts--symbols-with-body-expressions-regexp
757
757
first-child)))))
You can’t perform that action at this time.
0 commit comments