summaryrefslogtreecommitdiff
path: root/src/clj
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2009-02-23 17:07:12 +0000
committerRich Hickey <richhickey@gmail.com>2009-02-23 17:07:12 +0000
commit9253928ba2330b9929eb26577ba20047fb24c5de (patch)
tree0dec0348a94a7c72b1e81f52b769134f82cf1ef0 /src/clj
parentd1894dffee839a19699376147c289f8b51582638 (diff)
lazy-seq perf tweaks
Diffstat (limited to 'src/clj')
-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 ecd417d5..b13bc52b 100644
--- a/src/clj/clojure/core.clj
+++ b/src/clj/clojure/core.clj
@@ -425,7 +425,7 @@
seq calls. Any closed over locals will be cleared prior to the tail
call of body."
[& body]
- (list* '#^{:once true :super-name "clojure/lang/LazySeq"} fn* [] body))
+ (list 'new 'clojure.lang.LazySeq (list* '#^{:once true} fn* [] body)))
(defn concat
"Returns a lazy seq representing the concatenation of the elements in the supplied colls."