summaryrefslogtreecommitdiff
path: root/lisp/textmodes
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-03-03 19:42:09 +0000
committerRichard M. Stallman <rms@gnu.org>1996-03-03 19:42:09 +0000
commitb14f720b0c11804c8a3bcf5ce7456ce4cd7af932 (patch)
tree60f08075c51115f0f1dd451a60d4e8f828547ffe /lisp/textmodes
parent178f24298fd87194b3e8c609876d65e4ab266fd9 (diff)
downloademacs-b14f720b0c11804c8a3bcf5ce7456ce4cd7af932.tar.gz
(texinfo-font-lock-keywords): Fixed regexp for `@end' and `@item'.
Diffstat (limited to 'lisp/textmodes')
-rw-r--r--lisp/textmodes/texinfo.el2
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.")