changeset 14739:c3c9db761b66

(texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'.
author Richard M. Stallman <rms@gnu.org>
date Sun, 03 Mar 1996 19:42:09 +0000
parents 8927d2cc60c7
children 0e3add8490d0
files lisp/textmodes/texinfo.el
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/textmodes/texinfo.el	Sun Mar 03 19:29:10 1996 +0000
+++ b/lisp/textmodes/texinfo.el	Sun Mar 03 19:42:09 1996 +0000
@@ -220,7 +220,7 @@
     ("@\\(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.")