summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-08-16 20:31:52 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-08-16 20:31:52 +0200
commitad932aca160785eae2fbc0d6028a730d12ff193c (patch)
tree64249a798afd3770ac50644e2ae4375e8934e0f6
parent6d14923200a3403deb96d46a0d0acbe130d40efb (diff)
Fix the message displayed when cider-nrepl is not present at all
-rw-r--r--cider-connection.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/cider-connection.el b/cider-connection.el
index da2c2d15..08b102f3 100644
--- a/cider-connection.el
+++ b/cider-connection.el
@@ -206,8 +206,7 @@ message in the REPL area."
(cond
((null middleware-version)
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
- "CIDER %s requires cider-nrepl to work normally. Please, install it!"
- cider-version cider-required-middleware-version middleware-version))
+ "CIDER requires cider-nrepl to be fully functional. Many things will not work without it!"))
((version<= middleware-version cider-required-middleware-version)
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
"CIDER %s requires cider-nrepl %s+, but you're currently using cider-nrepl %s. Things will break!"