From b14f720b0c11804c8a3bcf5ce7456ce4cd7af932 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sun, 3 Mar 1996 19:42:09 +0000 Subject: [PATCH] (texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'. --- lisp/textmodes/texinfo.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.") -- 2.39.5