From 48fbf954c9820b64689a1c1d0af5f2138a20d781 Mon Sep 17 00:00:00 2001 From: Jeremy Penner Date: Mon, 11 Mar 2013 15:34:09 -0500 Subject: [PATCH] don't bother printing illegible function pointer on eval failure --- src/hottub/repl.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hottub/repl.clj b/src/hottub/repl.clj index e71ac2a..b793358 100644 --- a/src/hottub/repl.clj +++ b/src/hottub/repl.clj @@ -45,4 +45,4 @@ (doseq [f (clear-and-get-evalqueue repl)] (try (f) - (catch Exception e (println "couldn't eval" f (.getMessage e)))))) \ No newline at end of file + (catch Exception e (println "couldn't eval:" (.getMessage e)))))) \ No newline at end of file