branch: elpa/cider
commit ae2c39f99ac7a84e3869bc35d1b96074e13d0ab3
Author: Bozhidar Batsov <[email protected]>
Commit: Bozhidar Batsov <[email protected]>
Fix a warning
---
nrepl-client.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/nrepl-client.el b/nrepl-client.el
index 36673a237a..7bf2535205 100644
--- a/nrepl-client.el
+++ b/nrepl-client.el
@@ -951,7 +951,7 @@ If TOOLING, use the tooling session rather than the
standard session."
(time-less-p
nrepl-sync-request-timeout
(time-subtract nil time0)))
- (error "Sync nREPL request timed out %s after %s secs." request
nrepl-sync-request-timeout)))
+ (error "Sync nREPL request timed out %s after %s secs" request
nrepl-sync-request-timeout)))
;; Clean up the response, otherwise we might repeatedly ask for input.
(nrepl-dict-put response "status" (remove "need-input" status))
(accept-process-output nil 0.01))