diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-11-20 01:52:58 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-11-20 01:52:58 +0000 |
commit | 81a88aefaea7a3f30647d09e194fc79091774c3a (patch) | |
tree | c96917dc968f1959ef7d7f954d3abb02de558c33 /src | |
parent | be6a69e30036f81035a63d13187540ffc7a4feee (diff) |
got rid of scan and touch
Diffstat (limited to 'src')
-rw-r--r-- | src/clj/clojure/core.clj | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj index 1e74fef6..b5b13476 100644 --- a/src/clj/clojure/core.clj +++ b/src/clj/clojure/core.clj @@ -1484,9 +1484,6 @@ (recur (rest sq#)))))))] (apply emit binds))) -(defn scan [& args] (throw (new Exception "scan is now called dorun"))) -(defn touch [& args] (throw (new Exception "touch is now called doall"))) - (defn dorun "When lazy sequences are produced via functions that have side effects, any effects other than those needed to produce the first |