Skip to content

Commit cf592e7

Browse files
cichlicap10morgan
authored andcommitted
[Fix #1466] Correctly font-lock pretty-printed results at the REPL
1 parent 03a4952 commit cf592e7

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
### Bugs fixed
88

9+
* [#1466](https://github.com/clojure-emacs/cider/issues/1466): Correctly font-lock pretty-printed results in the REPL.
910
* [#1475](https://github.com/clojure-emacs/cider/pull/1475): Fix `args-out-of-range` error in `cider--get-symbol-indent`.
1011

1112
## 0.10.0 / 2015-12-03

cider-repl.el

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -606,7 +606,10 @@ the symbol."
606606
(lambda (buffer err)
607607
(cider-repl-emit-stderr buffer err))
608608
(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))))
610613

611614
(defun cider-repl--send-input (&optional newline)
612615
"Go to the end of the input and send the current input.

0 commit comments

Comments
 (0)