Hi,
Any help wd be appreciated; this is what happened (environment is Cygwin on
win7):


$ lein2 trampoline cljsbuild repl-rhino
Running Rhino-based ClojureScript REPL.
"(do (require (quote cljsbuild.repl.rhino)) (do (clojure.core/ns
leiningen.core.injected) (defn- compose-hooks [f1 f2] (fn [& args] (apply
f2 f1 args))) (defn- join-hooks [original hooks] (reduce compose-hooks
original hooks)) (defn- run-hooks [hook original args] (apply (join-hooks
original (clojure.core/deref hook)) args)) (defn- prepare-for-hooks [v]
(when-not (:robert.hooke/hook (meta (clojure.core/deref v))) (let [hook
(atom ())] (alter-var-root v (fn [original] (with-meta (fn [& args]
(run-hooks hook original args)) (assoc (meta original) :robert.hooke/hook
hook :robert.hooke/original original))))))) (defn- add-unless-present [coll
f] (if-not (some #{f} coll) (conj coll f) coll)) (defn add-hook \"Add a
hook function f to target-var. Hook functions are passed the\\n  target
function and all their arguments and must apply the target to\\n  the args
if they wish to continue execution.\" [target-var f] (prepare-for-hooks
target-var) (swap! (:robert.hooke/hook (meta (clojure.core/deref
target-var))) add-unless-present f)) (clojure.core/ns user)) (set!
*warn-on-reflection* nil) (do (cljsbuild.repl.rhino/run-repl-rhino)
(clojure.core/shutdown-agents)))"

$

-A

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@googlegroups.com
Note that posts from new members are moderated - please be patient with your 
first post.
To unsubscribe from this group, send email to
clojure+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to