Skip to content

Commit f742cd9

Browse files
committed
fix bad fixpoint logic in cljs.cli/normalize
1 parent 2c516d4 commit f742cd9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main/clojure/cljs/cli.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -652,10 +652,10 @@ present"
652652
(concat pre [(first post) (fnext post)]
653653
(normalize commands (nnext post)))))
654654
args*))]
655-
(loop [args' (normalize* args)]
655+
(loop [args args args' (normalize* args)]
656656
(if (= args args')
657657
args'
658-
(recur (normalize* args))))))
658+
(recur args' (normalize* args'))))))
659659

660660
(defn merged-commands [repl-env]
661661
(add-commands default-commands

0 commit comments

Comments
 (0)