Skip to content

Commit 3a98c1b

Browse files
xiongtxbbatsov
authored andcommitted
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).
1 parent 8143c4a commit 3a98c1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cider-repl.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -901,9 +901,9 @@ text property `cider-old-input'."
901901
(defun cider-repl-switch-to-other ()
902902
"Switch between the Clojure and ClojureScript REPLs for the current project."
903903
(interactive)
904-
(if-let* ((other-connection (cider-other-connection))
904+
(if-let* ((other-connection (cider-other-connection)))
905905
(switch-to-buffer other-connection)
906-
(message "There's no other REPL for the current project"))))
906+
(message "There's no other REPL for the current project")))
907907

908908
(defvar cider-repl-clear-buffer-hook)
909909

0 commit comments

Comments
 (0)