diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-21 06:05:09 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2005-10-21 06:05:09 +0000 |
commit | 8debde6e208dfab075de1e975839fcdc2e350ca5 (patch) | |
tree | 85dfb1554e5ad9dd03839872342ccc3867c0bebf /lisp/emacs-lisp | |
parent | 889c5dad201c98a3eefc91b1ec9f2f7595d03ec0 (diff) | |
download | emacs-8debde6e208dfab075de1e975839fcdc2e350ca5.tar.gz emacs-8debde6e208dfab075de1e975839fcdc2e350ca5.tar.bz2 emacs-8debde6e208dfab075de1e975839fcdc2e350ca5.zip |
(syntax-ppss-flush-cache): Fix typo.
Suggested by Martin Rudalics <rudalics@gmx.at>.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/syntax.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/syntax.el b/lisp/emacs-lisp/syntax.el index 6c897319433..9c2ac336b9b 100644 --- a/lisp/emacs-lisp/syntax.el +++ b/lisp/emacs-lisp/syntax.el @@ -89,7 +89,7 @@ point (where the PPSS is equivalent to nil).") ;; assumed nil state at BEG may not be valid any more. (if (<= beg (or (car (nth 10 syntax-ppss-last)) (nth 9 syntax-ppss-last) - (nth 2 syntax-ppss-last) + (nth 3 syntax-ppss-last) 0)) (setq syntax-ppss-last nil) (setcar syntax-ppss-last nil))) |