aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index f06a279c9c2..760d8cde744 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -4236,7 +4236,7 @@ If nil, search stops at the beginning of the accessible portion of the buffer."
4236(defun blink-matching-open () 4236(defun blink-matching-open ()
4237 "Move cursor momentarily to the beginning of the sexp before point." 4237 "Move cursor momentarily to the beginning of the sexp before point."
4238 (interactive) 4238 (interactive)
4239 (when (and (> (point) (1+ (point-min))) 4239 (when (and (> (point) (point-min))
4240 blink-matching-paren 4240 blink-matching-paren
4241 ;; Verify an even number of quoting characters precede the close. 4241 ;; Verify an even number of quoting characters precede the close.
4242 (= 1 (logand 1 (- (point) 4242 (= 1 (logand 1 (- (point)