Skip to content

Commit

Permalink
Replace unneded let*
Browse files Browse the repository at this point in the history
  • Loading branch information
kommen committed Oct 20, 2024
1 parent 997c591 commit 7e44026
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clojure-ts-mode.el
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ PARENT is expected to be a list literal.
See `treesit-simple-indent-rules'."
(and
(clojure-ts--list-node-p parent)
(let* ((first-child (clojure-ts--node-child-skip-metadata parent 0)))
(let ((first-child (clojure-ts--node-child-skip-metadata parent 0)))
(and
(not
(clojure-ts--symbol-matches-p
Expand Down

0 comments on commit 7e44026

Please sign in to comment.