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\"
187187If CONNECTION is provided dispatch to that connection instead of
188188the current connection. Return the id of the sent message.
189189If 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))
191191
192192(defun cider-nrepl-send-sync-request (request &optional connection
193193 abort-on-input callback )
@@ -199,15 +199,15 @@ at the first sign of user input, so as not to hang the
199199interface.
200200if CALLBACK is non-nil, it will additionally be called on all received messages."
201201 (nrepl-send-sync-request request
202- (or connection (cider-current-repl 'any 'ensure ))
202+ (or connection (cider-current-repl nil 'ensure ))
203203 abort-on-input
204204 nil
205205 callback))
206206
207207(defun cider-nrepl-send-unhandled-request (request &optional connection )
208208 " Send REQUEST to the nREPL CONNECTION and ignore any responses.
209209Immediately 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 )))
211211 (id (nrepl-send-request request #'ignore conn)))
212212 (with-current-buffer conn
213213 (nrepl--mark-id-completed id))
You can’t perform that action at this time.
0 commit comments