summaryrefslogtreecommitdiff
path: root/cider-interaction.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-02-22 11:37:26 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2015-02-22 11:37:26 +0200
commite2775111a05c7c19d19152c5727c107e9c7f724b (patch)
tree9c7cd5d31751647415547c4ce505c69c9e5c9b16 /cider-interaction.el
parentc699d7c1b13a15fe709d2269bc145adbdfd8d41e (diff)
Display error output in cider--check-required-nrepl-ops
Diffstat (limited to 'cider-interaction.el')
-rw-r--r--cider-interaction.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-interaction.el b/cider-interaction.el
index 32e93be4..5e014fdd 100644
--- a/cider-interaction.el
+++ b/cider-interaction.el
@@ -180,7 +180,7 @@ Signal an error if it is not supported."
"Check whether all required nREPL ops are present."
(let ((missing-ops (-remove 'nrepl-op-supported-p cider-required-nrepl-ops)))
(when missing-ops
- (cider-repl-emit-interactive-output
+ (cider-repl-emit-interactive-err-output
(format "WARNING: The following required nREPL ops are not supported: \n%s\nPlease, install (or update) cider-nrepl %s and restart CIDER"
(cider-string-join missing-ops " ")
(upcase cider-version))))))