diff options
-rw-r--r-- | src/clj/clojure/core.clj | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj index 00371db0..89a4ca6e 100644 --- a/src/clj/clojure/core.clj +++ b/src/clj/clojure/core.clj @@ -5142,6 +5142,6 @@ (chunk-cons (chunk b) (keepi (+ idx size) (chunk-rest s)))) (let [x (f idx (first s))] (if (nil? x) - (keepi f (inc idx) (rest s)) - (cons x (keepi f (rest s)))))))))] + (keepi (inc idx) (rest s)) + (cons x (keepi (inc idx) (rest s)))))))))] (keepi 0 coll)))) |