We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc7d0bb commit 2343efcCopy full SHA for 2343efc
cider-interaction.el
@@ -198,12 +198,12 @@ otherwise there is ambiguity as to which connection buffer should be selected.
198
199
If there are multiple connection buffers matching PROJECT-DIRECTORY there
200
is ambiguity, therefore nil is returned."
201
- (when (not (car (-filter
202
- (lambda (conn)
203
- (not
204
- (with-current-buffer (get-buffer conn)
205
- nrepl-project-dir)))
206
- nrepl-connection-list)))
+ (unless (-filter
+ (lambda (conn)
+ (not
+ (with-current-buffer (get-buffer conn)
+ nrepl-project-dir)))
+ nrepl-connection-list)
207
(let ((matching-connections
208
(-filter
209
(lambda (conn)
0 commit comments