From: Richard M. Stallman Date: Thu, 21 Oct 1993 21:25:05 +0000 (+0000) Subject: (blink-matching-open): Treat / syntax like \ syntax. X-Git-Tag: emacs-19.34~10982 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4e24c6b147db4309dbf7134eb5a9c1cb279bc498;p=emacs.git (blink-matching-open): Treat / syntax like \ syntax. --- 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)