summaryrefslogtreecommitdiff
path: root/src/jvm
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2008-02-22 14:36:31 +0000
committerRich Hickey <richhickey@gmail.com>2008-02-22 14:36:31 +0000
commit14500dafbc4effea7aa6a15c68d29429a439fa0e (patch)
treef8e74111647225217650cdd3db933e595536ba4d /src/jvm
parent9671d467aca8b7c9cae17e40ba3ff81a611fbe22 (diff)
completed docs
Diffstat (limited to 'src/jvm')
-rw-r--r--src/jvm/clojure/lang/RT.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/jvm/clojure/lang/RT.java b/src/jvm/clojure/lang/RT.java
index 22185176..c35bdedb 100644
--- a/src/jvm/clojure/lang/RT.java
+++ b/src/jvm/clojure/lang/RT.java
@@ -194,12 +194,12 @@ static
Var v;
v = Var.intern(CLOJURE_NS, IN_NAMESPACE, inNamespace);
v.setMeta(map(dockw, "Sets *ns* to the namespace named by the symbol, creating it if needed."));
- Var.intern(CLOJURE_NS, LOAD_FILE,
- new AFn(){
- public Object invoke(Object arg1) throws Exception{
- return Compiler.loadFile((String) arg1);
- }
- });
+ v = Var.intern(CLOJURE_NS, LOAD_FILE,
+ new AFn(){
+ public Object invoke(Object arg1) throws Exception{
+ return Compiler.loadFile((String) arg1);
+ }
+ });
v.setMeta(map(dockw, "Sequentially read and evaluate the set of forms contained in the file."));
v = Var.intern(CLOJURE_NS, IDENTICAL,
new AFn(){