Skip to content

Commit

Permalink
Fix font-lock-face property in REPL info regions
Browse files Browse the repository at this point in the history
  • Loading branch information
svaante committed Jan 6, 2025
1 parent dec70cc commit b23288e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dape.el
Original file line number Diff line number Diff line change
Expand Up @@ -4458,7 +4458,8 @@ The search is done backwards from POINT. The line is marked with
(add-text-properties start end
`( keymap ,(make-composed-keymap
(list (plist-get props 'keymap) keymap))
font-lock-face ,(plist-get props 'face))
font-lock-face ,(or (plist-get props 'font-lock-face)
(plist-get props 'face)))
str)
finally return
(propertize str
Expand Down

0 comments on commit b23288e

Please sign in to comment.