Skip to content

Commit b7b366b

Browse files
committed
Don't void nrepl-err-handler
This was an extra measure included as part of #3607 It resulted in `*cider-error*` not being shown, in certain scenarios. That particular measure wasn't critical in avoiding the issue tackled in that PR.
1 parent f7f8e2c commit b7b366b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Diff for: cider-eval.el

+1-2
Original file line numberDiff line numberDiff line change
@@ -849,8 +849,7 @@ REPL buffer. This is controlled via
849849
(when-let ((conn (with-current-buffer buffer
850850
(cider-current-repl))))
851851
(when (cider-nrepl-op-supported-p "analyze-last-stacktrace" conn)
852-
(let ((nrepl-err-handler (lambda (&rest _))) ;; ignore any errors during this request to avoid any recursion
853-
(nrepl-sync-request-timeout 4)) ;; ensure that this feature cannot possibly create an overly laggy UX
852+
(let ((nrepl-sync-request-timeout 4)) ;; ensure that this feature cannot possibly create an overly laggy UX
854853
(when-let* ((result (nrepl-send-sync-request (thread-last (map-merge 'list
855854
'(("op" "analyze-last-stacktrace"))
856855
(cider--nrepl-print-request-map fill-column))

0 commit comments

Comments
 (0)