diff options
| author | Richard M. Stallman <rms@gnu.org> | 1996-03-03 19:42:09 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1996-03-03 19:42:09 +0000 |
| commit | b14f720b0c11804c8a3bcf5ce7456ce4cd7af932 (patch) | |
| tree | 60f08075c51115f0f1dd451a60d4e8f828547ffe /lisp/textmodes | |
| parent | 178f24298fd87194b3e8c609876d65e4ab266fd9 (diff) | |
| download | emacs-b14f720b0c11804c8a3bcf5ce7456ce4cd7af932.tar.gz | |
(texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'.
Diffstat (limited to 'lisp/textmodes')
| -rw-r--r-- | lisp/textmodes/texinfo.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index e0e8d6395c3..667d32de736 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -220,7 +220,7 @@ chapter." ("@\\(samp\\|code\\|var\\|math\\){\\([^}]+\\)" 2 font-lock-variable-name-face) ("@\\(cite\\|xref\\|pxref\\){\\([^}]+\\)" 2 font-lock-reference-face) - ("@\\(end\\|item\\) *\\(.+\\)" 2 font-lock-function-name-face keep) + ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-function-name-face keep) ) "Additional expressions to highlight in TeXinfo mode.") |
