Skip to content

Commit 0b70bf8

Browse files
mkbbatsov
authored andcommitted
Restore syntax highlighting in result minibuffer
1 parent a38a92c commit 0b70bf8

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## master (unreleased)
44

5+
### Bugs fixed
6+
7+
- [#3742](https://github.com/clojure-emacs/cider/issues/3742): Restore syntax highlighting in result minibuffer.
8+
59
## 1.16.0 (2024-09-24)
610

711
### Changes

cider-overlays.el

+1-1
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ focused."
317317
:where point
318318
:duration cider-eval-result-duration
319319
:prepend-face (or overlay-face 'cider-result-overlay-face))))
320-
(msg (format "%s%s" cider-eval-result-prefix value))
320+
(msg (format "%s%s" cider-eval-result-prefix font-value))
321321
(max-msg-length (* (floor (* (frame-height) max-mini-window-height))
322322
(frame-width)))
323323
(msg (if (> (string-width msg) max-msg-length)

0 commit comments

Comments
 (0)