aboutsummaryrefslogtreecommitdiff
path: root/src/clojure/contrib/repl_utils.clj
diff options
context:
space:
mode:
authorChristophe Grand <christophe@cgrand.net>2009-03-03 14:49:15 +0000
committerChristophe Grand <christophe@cgrand.net>2009-03-03 14:49:15 +0000
commit1f66365c555956a50f235e858b93365ece6cd4b6 (patch)
tree52447e7cce3270c97b7a497a12ff7c1b98ca5518 /src/clojure/contrib/repl_utils.clj
parent6f6415ce4f2f20581331f7f13e2e87ad131fce13 (diff)
Merged javadoc into repl-utils
Diffstat (limited to 'src/clojure/contrib/repl_utils.clj')
-rw-r--r--src/clojure/contrib/repl_utils.clj5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/clojure/contrib/repl_utils.clj b/src/clojure/contrib/repl_utils.clj
index 5ba37373..671cb39d 100644
--- a/src/clojure/contrib/repl_utils.clj
+++ b/src/clojure/contrib/repl_utils.clj
@@ -9,10 +9,11 @@
; Utilities meant to be used interactively at the REPL
(ns clojure.contrib.repl-utils
- (:import (java.io LineNumberReader InputStreamReader PushbackReader)
+ (:import (java.io File LineNumberReader InputStreamReader PushbackReader)
(java.lang.reflect Modifier Method Constructor)
(clojure.lang RT))
(:use [clojure.contrib.seq-utils :only (indexed)]
+ [clojure.contrib.javadoc.browse :only (browse-url)]
[clojure.contrib.str-utils :only (str-join re-sub re-partition)]))
(defn- sortable [t]
@@ -119,3 +120,5 @@
Example: (source filter)"
[n]
`(println (or (get-source '~n) (str "Source not found"))))
+
+(load "repl_utils/javadoc") \ No newline at end of file