(blink-matching-open): Don't no-op when point is BEGV+1.
This commit is contained in:
parent
b3612973a7
commit
c448d31689
1 changed files with 1 additions and 1 deletions
|
@ -4236,7 +4236,7 @@ If nil, search stops at the beginning of the accessible portion of the buffer."
|
|||
(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)
|
||||
|
|
Loading…
Add table
Reference in a new issue