Skip to content

Commit

Permalink
[Fix clojure-emacs#1466] Correctly font-lock pretty-printed results a…
Browse files Browse the repository at this point in the history
…t the REPL
  • Loading branch information
cichli authored and cap10morgan committed Dec 24, 2015
1 parent 03a4952 commit cf592e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

### Bugs fixed

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

## 0.10.0 / 2015-12-03
Expand Down
5 changes: 4 additions & 1 deletion cider-repl.el
Original file line number Diff line number Diff line change
Expand Up @@ -606,7 +606,10 @@ the symbol."
(lambda (buffer err)
(cider-repl-emit-stderr buffer err))
(lambda (buffer)
(cider-repl-emit-prompt buffer))))
(cider-repl-emit-prompt buffer))
nrepl-err-handler
(lambda (buffer pprint-out)
(cider-repl-emit-result buffer pprint-out nil))))

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

0 comments on commit cf592e7

Please sign in to comment.