diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-04-19 18:13:25 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-04-19 18:13:25 +0000 |
commit | ac43807d0b51099277358afa194f8c56bbfab062 (patch) | |
tree | 3cfb02a652ac0c6a9c94f4f1da1439aaf470edcf /lisp/simple.el | |
parent | 98580e20de0071ad39129e21293c266905e44b41 (diff) | |
download | emacs-ac43807d0b51099277358afa194f8c56bbfab062.tar.gz |
(blink-matching-open): Fix botched commit.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
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) |