summaryrefslogtreecommitdiff
path: root/cider-repl.el
diff options
context:
space:
mode:
authorTianxiang Xiong <tianxiang.xiong@gmail.com>2017-12-12 19:18:02 -0800
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2017-12-13 08:26:56 +0000
commit3a98c1b9f931961132137a54e98d1ea03f0e6006 (patch)
tree016f943f69eec55c18a086fe9783318c7acf1b58 /cider-repl.el
parent8143c4afd79e165ff1bec43536839f1a27c67d33 (diff)
Fix misplaced parentheses in `cider-repl-switch-to-other`
Fixes #2136 This was causing [failures in CI](https://travis-ci.org/clojure-emacs/cider/jobs/314874715#L1412).
Diffstat (limited to 'cider-repl.el')
-rw-r--r--cider-repl.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/cider-repl.el b/cider-repl.el
index bb961d97..18623c28 100644
--- a/cider-repl.el
+++ b/cider-repl.el
@@ -901,9 +901,9 @@ text property `cider-old-input'."
(defun cider-repl-switch-to-other ()
"Switch between the Clojure and ClojureScript REPLs for the current project."
(interactive)
- (if-let* ((other-connection (cider-other-connection))
+ (if-let* ((other-connection (cider-other-connection)))
(switch-to-buffer other-connection)
- (message "There's no other REPL for the current project"))))
+ (message "There's no other REPL for the current project")))
(defvar cider-repl-clear-buffer-hook)