From: Stefan Monnier Date: Tue, 19 Apr 2005 18:13:25 +0000 (+0000) Subject: (blink-matching-open): Fix botched commit. X-Git-Tag: ttn-vms-21-2-B4~886 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ac43807d0b51099277358afa194f8c56bbfab062;p=emacs.git (blink-matching-open): Fix botched commit. --- diff --git a/lisp/simple.el b/lisp/simple.el index c73f549f31c..3082112ec1b 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -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)