Mercurial > emacs
changeset 61671:c0bf74e7fc30
(blink-matching-open): Fix botched commit.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Tue, 19 Apr 2005 18:13:25 +0000 |
parents | c1e3fbdb9d71 |
children | d7252d4ac684 |
files | lisp/simple.el |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/simple.el Tue Apr 19 18:12:23 2005 +0000 +++ b/lisp/simple.el Tue Apr 19 18:13:25 2005 +0000 @@ -4193,7 +4193,8 @@ (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)