File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ DONE-HANDLER, and EVAL-ERROR-HANDLER as appropriate."
270
270
(defun nrepl-default-handler (response )
271
271
" Default handler which is invoked when no handler is found.
272
272
Handles message contained in RESPONSE."
273
- (nrepl-dbind-response response (out value )
273
+ (nrepl-dbind-response response (out _value )
274
274
(cond
275
275
(out
276
276
(cider-repl-emit-interactive-output out)))))
@@ -401,9 +401,11 @@ This is bound for the duration of the handling of that message")
401
401
402
402
403
403
(defun nrepl-current-host ()
404
+ " Retrieve the current host."
404
405
(if (and (stringp buffer-file-name)
405
406
(file-remote-p buffer-file-name))
406
- tramp-current-host nrepl-host))
407
+ tramp-current-host
408
+ nrepl-host))
407
409
408
410
(defun nrepl-make-connection-buffer ()
409
411
" Create an nREPL connection buffer."
You can’t perform that action at this time.
0 commit comments