aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2009-02-18 03:40:00 +0000
committerChouser <chouser@n01se.net>2009-02-18 03:40:00 +0000
commite3c982f1a9c5cde3e7e8a894889ed6367242892f (patch)
tree33e605961d5fbf9dc921cc5c8ba3f4f20b8b65dc /src
parent24146f5f1b5c8b3e313ace303d3c4c7e3aea8f5d (diff)
Fix conflicting name "sequence" with Clojure SVN 1291
Diffstat (limited to 'src')
-rw-r--r--src/clojure/contrib/monads.clj1
-rw-r--r--src/clojure/contrib/probabilities/dist.clj1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/clojure/contrib/monads.clj b/src/clojure/contrib/monads.clj
index 7f328440..a9331c02 100644
--- a/src/clojure/contrib/monads.clj
+++ b/src/clojure/contrib/monads.clj
@@ -12,6 +12,7 @@
;; remove this notice, or any other, from this software.
(ns clojure.contrib.monads
+ (:refer-clojure :exclude (sequence))
(:require [clojure.contrib.accumulators]))
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
diff --git a/src/clojure/contrib/probabilities/dist.clj b/src/clojure/contrib/probabilities/dist.clj
index 459934df..4f9100fd 100644
--- a/src/clojure/contrib/probabilities/dist.clj
+++ b/src/clojure/contrib/probabilities/dist.clj
@@ -12,6 +12,7 @@
;; remove this notice, or any other, from this software.
(ns clojure.contrib.probabilities.dist
+ (:refer-clojure :exclude (sequence))
(:use clojure.contrib.monads clojure.contrib.macros
clojure.contrib.monads clojure.contrib.def))