diff options
| author | Gerd Moellmann | 2001-01-19 16:49:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-01-19 16:49:04 +0000 |
| commit | 48bb9196def68475caa36bb2428d5ee5ef2a5092 (patch) | |
| tree | 7ddbadc7f9f6fba282efcd6ea79b1ff284adee14 | |
| parent | 9724173bef67aad346c9a25442b15423cc453cfc (diff) | |
| download | emacs-48bb9196def68475caa36bb2428d5ee5ef2a5092.tar.gz emacs-48bb9196def68475caa36bb2428d5ee5ef2a5092.zip | |
(texinfo-mode): Use backward-paragraph
as font-lock-beginning-of-syntax-function in font-lock-defaults.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/textmodes/texinfo.el | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 019881fda1e..813194bc04b 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-01-19 Gerd Moellmann <gerd@gnu.org> | 1 | 2001-01-19 Gerd Moellmann <gerd@gnu.org> |
| 2 | 2 | ||
| 3 | * textmodes/texinfo.el (texinfo-mode): Use backward-paragraph | ||
| 4 | as font-lock-beginning-of-syntax-function in font-lock-defaults. | ||
| 5 | |||
| 3 | * jit-lock.el (jit-lock-fontify-now): Don't bind | 6 | * jit-lock.el (jit-lock-fontify-now): Don't bind |
| 4 | font-lock-beginning-of-syntax-function to nil. | 7 | font-lock-beginning-of-syntax-function to nil. |
| 5 | 8 | ||
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 897339750a1..1dcae0b1d40 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el | |||
| @@ -558,7 +558,7 @@ value of `texinfo-mode-hook'." | |||
| 558 | (setq imenu-case-fold-search nil) | 558 | (setq imenu-case-fold-search nil) |
| 559 | (make-local-variable 'font-lock-defaults) | 559 | (make-local-variable 'font-lock-defaults) |
| 560 | (setq font-lock-defaults | 560 | (setq font-lock-defaults |
| 561 | '(texinfo-font-lock-keywords nil nil nil nil | 561 | '(texinfo-font-lock-keywords nil nil nil backward-paragraph |
| 562 | (font-lock-syntactic-keywords | 562 | (font-lock-syntactic-keywords |
| 563 | . texinfo-font-lock-syntactic-keywords))) | 563 | . texinfo-font-lock-syntactic-keywords))) |
| 564 | (set (make-local-variable 'parse-sexp-lookup-properties) t) | 564 | (set (make-local-variable 'parse-sexp-lookup-properties) t) |