diff options
author | Pontus Michael <m.pontus@gmail.com> | 2015-05-01 13:20:18 -0400 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2015-05-01 13:20:18 -0400 |
commit | 5b0b0ad8303fb2e47298e4d0f946cff461ea3426 (patch) | |
tree | 07432a2ded2b9296339b3734a06df75d24baa59b /lisp/simple.el | |
parent | 7e7fd3010b73b45369328924fe5d9734f20161de (diff) | |
download | emacs-5b0b0ad8303fb2e47298e4d0f946cff461ea3426.tar.gz |
* lisp/simple.el (blink-matching-open): Better behavior in minibuffer
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 5 |
1 files changed, 3 insertions, 2 deletions
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. |