summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/boot.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/boot.clj b/src/boot.clj
index 7860ed00..a67b37f8 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -128,7 +128,7 @@
([x & xs]
(cond
(nil? xs) (seq x)
- (nil? x) (recur (first xs) (rest xs))
+ (nil? (seq x)) (recur (first xs) (rest xs))
:else (lazy-cons (first x) (apply concat (rest x) xs)))))
;;at this point all the support for syntax-quote exists