File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 6
6
7
7
### Bugs fixed
8
8
9
+ * [ #1466 ] ( https://github.com/clojure-emacs/cider/issues/1466 ) : Correctly font-lock pretty-printed results in the REPL.
9
10
* [ #1475 ] ( https://github.com/clojure-emacs/cider/pull/1475 ) : Fix ` args-out-of-range ` error in ` cider--get-symbol-indent ` .
10
11
11
12
## 0.10.0 / 2015-12-03
Original file line number Diff line number Diff line change @@ -606,7 +606,10 @@ the symbol."
606
606
(lambda (buffer err )
607
607
(cider-repl-emit-stderr buffer err))
608
608
(lambda (buffer )
609
- (cider-repl-emit-prompt buffer))))
609
+ (cider-repl-emit-prompt buffer))
610
+ nrepl-err-handler
611
+ (lambda (buffer pprint-out )
612
+ (cider-repl-emit-result buffer pprint-out nil ))))
610
613
611
614
(defun cider-repl--send-input (&optional newline )
612
615
" Go to the end of the input and send the current input.
You can’t perform that action at this time.
0 commit comments