]> git.eshelyaron.com Git - emacs.git/commitdiff
(blink-matching-open): Treat / syntax like \ syntax.
authorRichard M. Stallman <rms@gnu.org>
Thu, 21 Oct 1993 21:25:05 +0000 (21:25 +0000)
committerRichard M. Stallman <rms@gnu.org>
Thu, 21 Oct 1993 21:25:05 +0000 (21:25 +0000)
lisp/simple.el

index 9139298a398c55a475cc4c463cdab8421d74e4f4..a9a262cee16afecee02afa613757adbb4ffa1ca1 100644 (file)
@@ -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)