diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-02-11 01:27:03 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-02-11 01:27:03 +0000 |
commit | 362a880104b52d231ff55e7ae548b8cfc37849e8 (patch) | |
tree | a7304fb5fa9e9b14cba0a982e9b37980059e84a4 | |
parent | 8ed98027c65c194358313f1b141d85d8f6debc96 (diff) |
removed export
-rw-r--r-- | src/inspector.clj | 2 | ||||
-rw-r--r-- | src/xml.clj | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/inspector.clj b/src/inspector.clj index 83ebc460..3c3f0526 100644 --- a/src/inspector.clj +++ b/src/inspector.clj @@ -95,7 +95,7 @@ (setSize 400 600) (setVisible true))) -(export '(inspect-table inspect-tree)) +;(export '(inspect-table inspect-tree)) ;(inspect-tree {:a 1 :b 2 :c [1 2 3 {:d 4 :e 5 :f [6 7 8]}]}) ;(inspect-table [[1 2 3][4 5 6][7 8 9][10 11 12]]) diff --git a/src/xml.clj b/src/xml.clj index f1b15fb9..31af7dfd 100644 --- a/src/xml.clj +++ b/src/xml.clj @@ -89,7 +89,7 @@ (println "<?xml version='1.0' encoding='UTF-8'?>") (emit-element x)) -(export '(tag attrs content parse element emit emit-element)) +;(export '(tag attrs content parse element emit emit-element)) ;(load-file "/Users/rich/dev/clojure/src/xml.clj") ;(def x (xml/parse "http://arstechnica.com/journals.rssx")) |