# HG changeset patch # User Richard M. Stallman # Date 825882129 0 # Node ID c3c9db761b661ace2df18b3cbf7ad5fd44d0d70a # Parent 8927d2cc60c7b2f2c32c967060fc3e17703df0bc (texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'. diff -r 8927d2cc60c7 -r c3c9db761b66 lisp/textmodes/texinfo.el --- 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.")