From 5b0b0ad8303fb2e47298e4d0f946cff461ea3426 Mon Sep 17 00:00:00 2001 From: Pontus Michael Date: Fri, 1 May 2015 13:20:18 -0400 Subject: [PATCH] * lisp/simple.el (blink-matching-open): Better behavior in minibuffer --- lisp/simple.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lisp/simple.el b/lisp/simple.el index cf1912ade4..31efe3896d 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -6992,8 +6992,9 @@ The function should return non-nil if the two tokens do not match.") (buffer-substring blinkpos (1+ blinkpos)))) ;; There is nothing to show except the char itself. (t (buffer-substring blinkpos (1+ blinkpos)))))) - (message "Matches %s" - (substring-no-properties open-paren-line-string))))))))) + (minibuffer-message + "Matches %s" + (substring-no-properties open-paren-line-string))))))))) (defvar blink-paren-function 'blink-matching-open "Function called, if non-nil, whenever a close parenthesis is inserted. -- 2.39.2