* lisp/simple.el (blink-matching-open): Don't burp if we can't find a match.
authorStefan Monnier <monnier@iro.umontreal.ca>
Wed, 8 Sep 2010 16:14:44 +0000 (18:14 +0200)
committerStefan Monnier <monnier@iro.umontreal.ca>
Wed, 8 Sep 2010 16:14:44 +0000 (18:14 +0200)
lisp/ChangeLog
lisp/simple.el

index 683c6e6..e445641 100644 (file)
@@ -1,3 +1,7 @@
+2010-09-08  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * simple.el (blink-matching-open): Don't burp if we can't find a match.
+
 2010-09-08  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp/bytecomp.el (byte-compile-report-ops):
index 18b2c3a..36931c7 100644 (file)
@@ -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.