summaryrefslogtreecommitdiff
path: root/src/clj
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2008-10-12 21:31:23 +0000
committerRich Hickey <richhickey@gmail.com>2008-10-12 21:31:23 +0000
commitc176f33ca4ac30b577fe6d5dec43c8707d009533 (patch)
tree9c6fb2a0a0e91b283ea3bb6cf80ec12d65730912 /src/clj
parent043093bd670d4981a3136294941831c4cfcb7bae (diff)
first step towards AOT compilation - constants now read from strings in classfiles instead of hand-off from classloader
Diffstat (limited to 'src/clj')
-rw-r--r--src/clj/clojure/boot.clj2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/clj/clojure/boot.clj b/src/clj/clojure/boot.clj
index f4625e77..34b49bc4 100644
--- a/src/clj/clojure/boot.clj
+++ b/src/clj/clojure/boot.clj
@@ -3567,6 +3567,8 @@
(.append w \#)
(print-method (str p) w))
+(def #^{:private true} print-initialized true)
+
(defmacro declare
"defs the supplied var names with no bindings, useful for making forward declarations."
[& names] `(do ~@(map #(list 'def %) names)))