changeset 65698:c2427cf9fc77

(blink-matching-open): Don't no-op when point is BEGV+1.
author Richard M. Stallman <rms@gnu.org>
date Mon, 26 Sep 2005 00:03:43 +0000
parents b89731597db3
children 3463261ab49a
files lisp/simple.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/simple.el	Mon Sep 26 00:02:37 2005 +0000
+++ b/lisp/simple.el	Mon Sep 26 00:03:43 2005 +0000
@@ -4236,7 +4236,7 @@
 (defun blink-matching-open ()
   "Move cursor momentarily to the beginning of the sexp before point."
   (interactive)
-  (when (and (> (point) (1+ (point-min)))
+  (when (and (> (point) (point-min))
 	     blink-matching-paren
 	     ;; Verify an even number of quoting characters precede the close.
 	     (= 1 (logand 1 (- (point)