From 4e24c6b147db4309dbf7134eb5a9c1cb279bc498 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Thu, 21 Oct 1993 21:25:05 +0000 Subject: [PATCH] (blink-matching-open): Treat / syntax like \ syntax. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." "Move cursor momentarily to the beginning of the sexp before point." (interactive) (and (> (point) (1+ (point-min))) - (/= (char-syntax (char-after (- (point) 2))) ?\\ ) + (not (memq (char-syntax (char-after (- (point) 2))) '(?/ ?\\ ))) blink-matching-paren (let* ((oldpos (point)) (blinkpos) -- 2.39.5