Skip to content

Commit 1fc28ac

Browse files
authored
Merge pull request #524 from angusiguess/master
Replace defn by fn
2 parents d2a4267 + e3861de commit 1fc28ac

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pixie/stdlib.pxi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2194,7 +2194,7 @@ For more information, see http://clojure.org/special_forms#binding-forms"}
21942194
(if (seq? coll) coll
21952195
(or (seq coll) ())))
21962196
([xform coll]
2197-
(let [step (defn step [xform acc xs]
2197+
(let [step (fn step [xform acc xs]
21982198
(if-let [s (seq xs)]
21992199
(let [next-acc ((xform conj) acc (first s))]
22002200
(if (= acc next-acc) (step xform next-acc (next s))

0 commit comments

Comments
 (0)