summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2010-09-08 18:14:44 +0200
committerStefan Monnier <monnier@iro.umontreal.ca>2010-09-08 18:14:44 +0200
commitc34a966941056e0f55f59cb453d31ef0870c3a58 (patch)
tree8c7eaf7dd31c0e72919786275d961b665dea263f /lisp/simple.el
parent5a972c365f4431d75bf3a8d29a938cf89ccac8db (diff)
downloademacs-c34a966941056e0f55f59cb453d31ef0870c3a58.tar.gz
* lisp/simple.el (blink-matching-open): Don't burp if we can't find a match.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el1
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 18b2c3a300a..36931c7777c 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -5541,6 +5541,7 @@ The function should return non-nil if the two tokens do not match.")
(if (minibufferp)
(minibuffer-message " [Unmatched parenthesis]")
(message "Unmatched parenthesis"))))
+ ((not blinkpos) nil)
((pos-visible-in-window-p blinkpos)
;; Matching open within window, temporarily move to blinkpos but only
;; if `blink-matching-paren-on-screen' is non-nil.