summaryrefslogtreecommitdiff
path: root/cider-connection.el
diff options
context:
space:
mode:
authorVitalie Spinu <spinuvit@gmail.com>2018-08-28 12:38:13 +0200
committerBozhidar Batsov <bozhidar.batsov@gmail.com>2018-08-30 20:51:56 +0200
commit7e3ae962e153b7665451d3ec7d1d4f5f8935085c (patch)
tree68c2f7313221f0d22fd779df78a0a9ad1541dd0b /cider-connection.el
parent8bf420f72477bcf566a9f84227e0eaf860b4ba4c (diff)
[Fix #2418] Don't overwrite explicitly supplied params in connect-sibling-xyz
Diffstat (limited to 'cider-connection.el')
-rw-r--r--cider-connection.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/cider-connection.el b/cider-connection.el
index 67e6c390..a7a957c8 100644
--- a/cider-connection.el
+++ b/cider-connection.el
@@ -347,7 +347,8 @@ entire session."
(let* ((repl (or repl
(sesman-browser-get 'object)
(cider-current-repl nil 'ensure)))
- (params (thread-first (cider--gather-connect-params nil repl)
+ (params (thread-first ()
+ (cider--gather-connect-params repl)
(plist-put :session-name (sesman-session-name-for-object 'CIDER repl))
(plist-put :repl-buffer repl))))
(cider--close-connection repl 'no-kill)