File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 9
9
### Bugs fixed
10
10
11
11
- [ #3832 ] ( https://github.com/clojure-emacs/cider/issues/3832 ) : Fix nrepl--eval-request sending duplicate info.
12
+ - [ #3837 ] ( https://github.com/clojure-emacs/cider/issues/3837 ) : Fix broken stacktrace response when C-c C-p throws an exception.
12
13
13
14
## 1.19.0 (2025-07-10)
14
15
Original file line number Diff line number Diff line change @@ -884,10 +884,10 @@ COMMENT-POSTFIX is the text to output after the last line."
884
884
(lambda (_buffer warning )
885
885
(setq res (concat res warning ))))))
886
886
887
- (defun cider-popup-eval-handler (&optional buffer _bounds _source -buffer )
887
+ (defun cider-popup-eval-handler (&optional buffer _bounds source -buffer )
888
888
" Make a handler for printing evaluation results in popup BUFFER,
889
889
_BOUNDS representing the buffer bounds of the evaled input,
890
- and _SOURCE -BUFFER the original buffer
890
+ and SOURCE -BUFFER the original buffer
891
891
892
892
This is used by pretty-printing commands."
893
893
; ; NOTE: cider-eval-register behavior is not implemented here for performance reasons.
@@ -907,15 +907,15 @@ This is used by pretty-printing commands."
907
907
; ; done handler:
908
908
nil
909
909
; ; eval-error handler:
910
- (lambda (buffer )
910
+ (lambda (_buffer )
911
911
(when (and (buffer-live-p chosen-buffer)
912
912
(member (buffer-name chosen-buffer)
913
913
cider-ancillary-buffers))
914
914
(with-selected-window (get-buffer-window chosen-buffer)
915
915
(cider-popup-buffer-quit-function t )))
916
916
; ; also call the default nrepl-err-handler, so that our custom behavior doesn't void the base behavior:
917
917
(when nrepl-err-handler
918
- (funcall nrepl-err-handler buffer)))
918
+ (funcall nrepl-err-handler source- buffer)))
919
919
; ; content type handler:
920
920
nil
921
921
; ; truncated handler:
You can’t perform that action at this time.
0 commit comments