diff options
author | Rich Hickey <richhickey@gmail.com> | 2009-02-23 17:07:12 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2009-02-23 17:07:12 +0000 |
commit | 9253928ba2330b9929eb26577ba20047fb24c5de (patch) | |
tree | 0dec0348a94a7c72b1e81f52b769134f82cf1ef0 /src/clj | |
parent | d1894dffee839a19699376147c289f8b51582638 (diff) |
lazy-seq perf tweaks
Diffstat (limited to 'src/clj')
-rw-r--r-- | src/clj/clojure/core.clj | 2 |
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." |