From ac43807d0b51099277358afa194f8c56bbfab062 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Tue, 19 Apr 2005 18:13:25 +0000 Subject: [PATCH] (blink-matching-open): Fix botched commit. --- lisp/simple.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- 2.39.2