summaryrefslogtreecommitdiff
path: root/cider-connection.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-07-17 15:53:53 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2018-07-17 15:53:53 +0300
commit82d379c2c5be5bf061931ed29bf95b3cf5440c14 (patch)
tree2eeed2b84311cbeb60fc1446a7b3862a515cea2f /cider-connection.el
parent8e2d896459a271ad7b7e3e4713769032045bef83 (diff)
Fix a broken call to cider-popup-buffer
Diffstat (limited to 'cider-connection.el')
-rw-r--r--cider-connection.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/cider-connection.el b/cider-connection.el
index a58b7138..c50610d4 100644
--- a/cider-connection.el
+++ b/cider-connection.el
@@ -359,7 +359,7 @@ Don't restart the server or other connections within the same session. Use
((equal session-id (cider-nrepl-eval-session)) "Active eval")
((equal session-id (cider-nrepl-tooling-session)) "Active tooling")
(t "Unknown"))))
- (with-current-buffer (cider-popup-buffer cider-nrepl-session-buffer nil 'ancillary)
+ (with-current-buffer (cider-popup-buffer cider-nrepl-session-buffer 'select nil 'ancillary)
(read-only-mode -1)
(insert (format "Session: %s\n" session-id)
(format "Type: %s session\n" session-type)