]> git.eshelyaron.com Git - emacs.git/commitdiff
* 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 683c6e6b688644be7b0f6c16422b3c23c5750fc4..e445641a33cfa6e7a495ca6e91c356b297865b7e 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 18b2c3a300a730734d306b9fda8f8732c2b6b6c8..36931c7777ca75e9e53ec44a865e75c142dc506a 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.