summaryrefslogtreecommitdiff
path: root/nrepl-client.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-11-14 09:20:08 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2015-11-14 09:20:08 +0200
commitc49fc4ba2a7e6835126c9821a2e97eb309471623 (patch)
treecd102fb6c65047229809b1af1b5d2a67cad1b567 /nrepl-client.el
parentab81d7ff3ef791e12547600809486b54258d8737 (diff)
[Fix #1381] Don't the dump the sync request stacktraces in the minubuffer
Probably this was some leftover debug code.
Diffstat (limited to 'nrepl-client.el')
-rw-r--r--nrepl-client.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/nrepl-client.el b/nrepl-client.el
index f7e53438..aa14439b 100644
--- a/nrepl-client.el
+++ b/nrepl-client.el
@@ -946,8 +946,8 @@ sign of user input, so as not to hang the interface."
(when (member "done" status)
(when-let ((ex (nrepl-dict-get response "ex"))
(err (nrepl-dict-get response "err")))
- (cider-repl-emit-interactive-stderr err)
- (message "%s" err))
+ ;; dump the stacktrace in the REPL
+ (cider-repl-emit-interactive-stderr err))
(when-let ((id (nrepl-dict-get response "id")))
(with-current-buffer connection
(nrepl--mark-id-completed id)))