aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib
diff options
context:
space:
mode:
authorChouser <chouser@n01se.net>2008-11-23 20:33:05 +0000
committerChouser <chouser@n01se.net>2008-11-23 20:33:05 +0000
commitf01069d3af10ecb0eb628115c6a0decae18e9823 (patch)
treecd40f3cdcb73f4060d27a1b67eecc41db055a8a2 /src/clojure/contrib
parentb826c71c09951f1004d6fd5c955d420f93431da6 (diff)
Use 'declare' instead of 'def' for forward declaration.
Diffstat (limited to 'src/clojure/contrib')
-rw-r--r--src/clojure/contrib/zip_filter/xml.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clojure/contrib/zip_filter/xml.clj b/src/clojure/contrib/zip_filter/xml.clj
index 16f4154b..0865c64d 100644
--- a/src/clojure/contrib/zip_filter/xml.clj
+++ b/src/clojure/contrib/zip_filter/xml.clj
@@ -13,7 +13,7 @@
[clojure.zip :as zip]
[clojure.xml :as xml]))
-(def xml->)
+(declare xml->)
(defn attr
"Returns the xml attribute named attrname, of the xml node at location loc."