emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r101386: * lisp/simple.el (blink-matc


From: Stefan Monnier
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r101386: * lisp/simple.el (blink-matching-open): Don't burp if we can't find a match.
Date: Wed, 08 Sep 2010 18:14:44 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 101386
committer: Stefan Monnier <address@hidden>
branch nick: trunk
timestamp: Wed 2010-09-08 18:14:44 +0200
message:
  * lisp/simple.el (blink-matching-open): Don't burp if we can't find a match.
modified:
  lisp/ChangeLog
  lisp/simple.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-09-08 16:02:38 +0000
+++ b/lisp/ChangeLog    2010-09-08 16:14:44 +0000
@@ -1,3 +1,7 @@
+2010-09-08  Stefan Monnier  <address@hidden>
+
+       * simple.el (blink-matching-open): Don't burp if we can't find a match.
+
 2010-09-08  Glenn Morris  <address@hidden>
 
        * emacs-lisp/bytecomp.el (byte-compile-report-ops):

=== modified file 'lisp/simple.el'
--- a/lisp/simple.el    2010-09-03 11:12:46 +0000
+++ b/lisp/simple.el    2010-09-08 16:14:44 +0000
@@ -5541,6 +5541,7 @@
           (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.


reply via email to

[Prev in Thread] Current Thread [Next in Thread]