summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2009-03-09 01:50:14 +0000
committerRich Hickey <richhickey@gmail.com>2009-03-09 01:50:14 +0000
commiteac2f449af3e410f23d1ee6ca5ead6a1291de5a9 (patch)
tree3b962466a39288a107eee9b86fe96402080b57b8 /src
parented1a4e373ad3bfce7acae1fed7a64144fc3d26df (diff)
fixed seque
Diffstat (limited to 'src')
-rw-r--r--src/clj/clojure/core.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj
index bef817c3..56db96b3 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -3257,7 +3257,7 @@
(lazy-seq
(let [x (.take q)]
(if (identical? x q) ;q itself is eos sentinel
- @agt ;will be nil - touch agent just to propagate errors
+ (do @agt nil) ;touch agent just to propagate errors
(do
(send-off agt fill)
(cons (if (identical? x NIL) nil x) (drain)))))))]