From 59165c66ab545fb0130f81f22933390eae2584fc Mon Sep 17 00:00:00 2001 From: Meikel Brandmeyer Date: Sun, 25 Mar 2018 19:30:38 +0200 Subject: [PATCH] Fix start-aux with missing start argument --- src/unrepl/repl.clj | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/unrepl/repl.clj b/src/unrepl/repl.clj index cfe53e4..020e611 100644 --- a/src/unrepl/repl.clj +++ b/src/unrepl/repl.clj @@ -413,11 +413,11 @@ (let [cl (.getContextClassLoader (Thread/currentThread))] (try (some->> session-id session :class-loader (.setContextClassLoader (Thread/currentThread))) - (start) + (start {}) (finally (.setContextClassLoader (Thread/currentThread) cl))))) (defmacro ensure-ns [[fully-qualified-var-name & args :as expr]] `(do (require '~(symbol (namespace fully-qualified-var-name))) - ~expr)) \ No newline at end of file + ~expr))