From 5315f4f518d792399ea05bef7b3998e445de2d7c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mattias=20Engdeg=C3=A5rd?= Date: Wed, 3 May 2023 11:09:37 +0200 Subject: [PATCH] ; * lisp/simple.el (blink-matching-open): retain props in bootstrap --- lisp/simple.el | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index c9960ed5e13..58517dd81f9 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -9339,9 +9339,8 @@ The function should return non-nil if the two tokens do not match.") (delete-overlay blink-matching--overlay))))) ((not show-paren-context-when-offscreen) (minibuffer-message - #("Matches %s" - ;; Make the following text (i.e., %s) prominent. - 0 7 (face shadow)) + "%s%s" + (propertize "Matches " 'face 'shadow) (blink-paren-open-paren-line-string blinkpos))))))) (defun blink-paren-open-paren-line-string (pos) -- 2.39.5