From d2c47d46a1b189fb5f93936536c500cc5f5a1b61 Mon Sep 17 00:00:00 2001 From: Christophe Turle Date: Mon, 25 Mar 2013 23:19:42 +0100 Subject: [PATCH] fix #080 : excluding functions from clojure.core replacing "ns" by "in-ns" now works in v0.4.0 --- src/clooj/repl/main.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clooj/repl/main.clj b/src/clooj/repl/main.clj index 122a27c..9656714 100644 --- a/src/clooj/repl/main.clj +++ b/src/clooj/repl/main.clj @@ -229,7 +229,7 @@ (when-not @(:repl app) (start-repl app (first (project/get-selected-projects app)))) (when-let [current-ns (get-file-ns app)] - (send-to-repl app (str "(ns " current-ns ")") true))) + (send-to-repl app (str "(in-ns '" current-ns ")") true))) (defn restart-repl [app project-path] (stop-repl app)