diff options
| author | Stefan Monnier | 2005-10-21 06:05:09 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2005-10-21 06:05:09 +0000 |
| commit | 8debde6e208dfab075de1e975839fcdc2e350ca5 (patch) | |
| tree | 85dfb1554e5ad9dd03839872342ccc3867c0bebf | |
| parent | 889c5dad201c98a3eefc91b1ec9f2f7595d03ec0 (diff) | |
| download | emacs-8debde6e208dfab075de1e975839fcdc2e350ca5.tar.gz emacs-8debde6e208dfab075de1e975839fcdc2e350ca5.zip | |
(syntax-ppss-flush-cache): Fix typo.
Suggested by Martin Rudalics <rudalics@gmx.at>.
| -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).") | |||
| 89 | ;; assumed nil state at BEG may not be valid any more. | 89 | ;; assumed nil state at BEG may not be valid any more. |
| 90 | (if (<= beg (or (car (nth 10 syntax-ppss-last)) | 90 | (if (<= beg (or (car (nth 10 syntax-ppss-last)) |
| 91 | (nth 9 syntax-ppss-last) | 91 | (nth 9 syntax-ppss-last) |
| 92 | (nth 2 syntax-ppss-last) | 92 | (nth 3 syntax-ppss-last) |
| 93 | 0)) | 93 | 0)) |
| 94 | (setq syntax-ppss-last nil) | 94 | (setq syntax-ppss-last nil) |
| 95 | (setcar syntax-ppss-last nil))) | 95 | (setcar syntax-ppss-last nil))) |