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 7d6dfd29..e67cd0dd 100644
--- a/src/boot.clj
+++ b/src/boot.clj
@@ -1932,7 +1932,7 @@ make-proxy [classes method-map]
(defmacro when-first
"Same as (when (seq xs) (let [x (first xs)] body))"
[x xs & body]
- `(when ~xs
+ `(when (seq ~xs)
(let [~x (first ~xs)]
~@body)))