* lisp/simple.el (blink-matching-open): Better behavior in minibuffer

This commit is contained in:
Pontus Michael 2015-05-01 13:20:18 -04:00 committed by Stefan Monnier
parent 7e7fd3010b
commit 5b0b0ad830

View file

@ -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.