aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-10-21 21:25:05 +0000
committerRichard M. Stallman1993-10-21 21:25:05 +0000
commit4e24c6b147db4309dbf7134eb5a9c1cb279bc498 (patch)
treed19fc4a4baff15e236355001e4ef981cca9650bc
parent64c8498a8dc3f029e651ec7b426ca687078c11c3 (diff)
downloademacs-4e24c6b147db4309dbf7134eb5a9c1cb279bc498.tar.gz
emacs-4e24c6b147db4309dbf7134eb5a9c1cb279bc498.zip
(blink-matching-open): Treat / syntax like \ syntax.
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el
index 9139298a398..a9a262cee16 100644
--- a/lisp/simple.el
+++ b/lisp/simple.el
@@ -2115,7 +2115,7 @@ in the mode line."
2115 "Move cursor momentarily to the beginning of the sexp before point." 2115 "Move cursor momentarily to the beginning of the sexp before point."
2116 (interactive) 2116 (interactive)
2117 (and (> (point) (1+ (point-min))) 2117 (and (> (point) (1+ (point-min)))
2118 (/= (char-syntax (char-after (- (point) 2))) ?\\ ) 2118 (not (memq (char-syntax (char-after (- (point) 2))) '(?/ ?\\ )))
2119 blink-matching-paren 2119 blink-matching-paren
2120 (let* ((oldpos (point)) 2120 (let* ((oldpos (point))
2121 (blinkpos) 2121 (blinkpos)