; * lisp/simple.el (blink-matching-open): retain props in bootstrap
authorMattias Engdegård <mattiase@acm.org>
Wed, 3 May 2023 09:09:37 +0000 (11:09 +0200)
committerMattias Engdegård <mattiase@acm.org>
Wed, 3 May 2023 09:09:37 +0000 (11:09 +0200)
lisp/simple.el

index c9960ed5e13adfd57b88036ee4928a12ba67899b..58517dd81f9ed278bd9165dc8db91c4285f69a65 100644 (file)
@@ -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)