File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,7 @@ REQUEST is a pair list of the form (\"op\" \"operation\" \"par1-name\"
187
187
If CONNECTION is provided dispatch to that connection instead of
188
188
the current connection. Return the id of the sent message.
189
189
If TOOLING is truthy then the tooling session is used."
190
- (nrepl-send-request request callback (or connection (cider-current-repl 'any 'ensure )) tooling))
190
+ (nrepl-send-request request callback (or connection (cider-current-repl nil 'ensure )) tooling))
191
191
192
192
(defun cider-nrepl-send-sync-request (request &optional connection
193
193
abort-on-input callback )
@@ -199,15 +199,15 @@ at the first sign of user input, so as not to hang the
199
199
interface.
200
200
if CALLBACK is non-nil, it will additionally be called on all received messages."
201
201
(nrepl-send-sync-request request
202
- (or connection (cider-current-repl 'any 'ensure ))
202
+ (or connection (cider-current-repl nil 'ensure ))
203
203
abort-on-input
204
204
nil
205
205
callback))
206
206
207
207
(defun cider-nrepl-send-unhandled-request (request &optional connection )
208
208
" Send REQUEST to the nREPL CONNECTION and ignore any responses.
209
209
Immediately mark the REQUEST as done. Return the id of the sent message."
210
- (let* ((conn (or connection (cider-current-repl 'any 'ensure )))
210
+ (let* ((conn (or connection (cider-current-repl nil 'ensure )))
211
211
(id (nrepl-send-request request #'ignore conn)))
212
212
(with-current-buffer conn
213
213
(nrepl--mark-id-completed id))
You can’t perform that action at this time.
0 commit comments