From: Pontus Michael Date: Fri, 1 May 2015 17:20:18 +0000 (-0400) Subject: * lisp/simple.el (blink-matching-open): Better behavior in minibuffer X-Git-Tag: emacs-25.0.90~2229^2~16 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5b0b0ad8303fb2e47298e4d0f946cff461ea3426;p=emacs.git * lisp/simple.el (blink-matching-open): Better behavior in minibuffer --- diff --git a/lisp/simple.el b/lisp/simple.el index cf1912ade4f..31efe3896d4 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.