diff options
-rw-r--r-- | src/boot.clj | 2 |
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 |