]> git.eshelyaron.com Git - emacs.git/commitdiff
(blink-matching-open): Fix botched commit.
authorStefan Monnier <monnier@iro.umontreal.ca>
Tue, 19 Apr 2005 18:13:25 +0000 (18:13 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Tue, 19 Apr 2005 18:13:25 +0000 (18:13 +0000)
lisp/simple.el

index c73f549f31cb7788883e055e9cf12966cf719d41..3082112ec1ba78cc0816f959ceef3f35a9c1c347 100644 (file)
@@ -4193,7 +4193,8 @@ when it is off screen)."
                   (setq blinkpos (scan-sexps oldpos -1)))
               (error nil)))
           (and blinkpos
-               (not (syntax-class (syntax-after blinkpos)) 8)) ;Not syntax '$'.
+                ;; Not syntax '$'.
+               (not (eq (syntax-class (syntax-after blinkpos)) 8))
                (setq matching-paren
                      (let ((syntax (syntax-after blinkpos)))
                        (and (consp syntax)