Skip to content

Commit 34203d6

Browse files
committed
- fix
1 parent 2d4e286 commit 34203d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/cljs/cljs/core.cljs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10477,8 +10477,8 @@ reduces them without incurring seq initialization"
1047710477
(if (zero? (:print-length opts))
1047810478
(when (-seq coll)
1047910479
(-write writer (or (:more-marker opts) "...")))
10480-
(let [coll (-seq coll)]
10481-
(when coll
10480+
(do
10481+
(when-let [coll (-seq coll)]
1048210482
(print-one (-first coll) writer opts))
1048310483
(loop [coll (-next coll) n (dec (:print-length opts))]
1048410484
(if (and coll (or (nil? n) (not (zero? n))))

0 commit comments

Comments
 (0)