File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 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
738738 (or (clojure-ts--symbol-node-p first-child)
739739 (clojure-ts--keyword-node-p first-child)))))
740740
741- (defun clojure-ts--match-expression-in-body (node parent _bol )
741+ (defun clojure-ts--match-expression-in-body (node parent bol )
742742 " Match NODE if it is an expression used in a body argument.
743743PARENT is expected to be a list literal.
744744See `treesit-simple-indent-rules' ."
@@ -751,7 +751,7 @@ See `treesit-simple-indent-rules'."
751751 ; ; Symbols starting with this are false positives
752752 (rx line-start (or " default" " deflate" " defer" ))
753753 first-child))
754- (not (clojure-ts--match-with-meta node parent _bol ))
754+ (not (clojure-ts--match-with-meta node parent bol ))
755755 (clojure-ts--symbol-matches-p
756756 clojure-ts--symbols-with-body-expressions-regexp
757757 first-child)))))
You can’t perform that action at this time.
0 commit comments