branch: elpa/inf-clojure commit 3e712d9f489313c4097ccc891abedcfb6e1788d3 Author: Bozhidar Batsov <bozhi...@batsov.com> Commit: Bozhidar Batsov <bozhi...@batsov.com>
Add a couple of changelog entries --- CHANGELOG.md | 2 ++ inf-clojure.el | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c29ea96..6aaafd4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ ### Bugs fixed * [#152](https://github.com/clojure-emacs/inf-clojure/issues/152): Sanitize should only remove whitespace at the end of a command. +* [#188](https://github.com/clojure-emacs/inf-clojure/pull/188): Handle newlines between forms for `inf-clojure-eval-buffer`. +* [#189](https://github.com/clojure-emacs/inf-clojure/pull/189): Font-lock code inserted in the REPL from a source buffer. ## 3.0.0 (2020-08-01) diff --git a/inf-clojure.el b/inf-clojure.el index c5730fa..3832799 100644 --- a/inf-clojure.el +++ b/inf-clojure.el @@ -777,6 +777,7 @@ Indent FORM. FORM is expected to have been trimmed." (let ((end (point))) (goto-char beginning) (indent-sexp end) + ;; font-lock the inserted code (font-lock-ensure beginning end))) (comint-send-input t t))))