Skip to content

Commit 0e50abd

Browse files
committed
Bring back "namespace-not-found" status
* nrepl-client.el (nrepl-send-sync-request): Fix "namespace-not-found" status being suppressed. Re #1104
1 parent 4e6b0b9 commit 0e50abd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nrepl-client.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ sign of user input, so as not to hang the interface."
955955
nrepl-sync-request-timeout))
956956
(error "Sync nREPL request timed out %s" request)))
957957
;; Clean up the response, otherwise we might repeatedly ask for input.
958-
(nrepl-dict-put response "status" nil)
958+
(nrepl-dict-put response "status" (remove "need-input" status))
959959
(accept-process-output nil 0.01))
960960
;; If we couldn't finish, return nil.
961961
(when (member "done" status)

0 commit comments

Comments
 (0)