# HG changeset patch # User Dave Love # Date 917013786 0 # Node ID 0fae13f12fab2acddb3ac41c9722bdafdbb7f3af # Parent 495a82e0fd27b58b3e4cca871b4dd14053e25d3e (texinfo-font-lock-keywords): Match @ref. diff -r 495a82e0fd27 -r 0fae13f12fab lisp/textmodes/texinfo.el --- a/lisp/textmodes/texinfo.el Thu Jan 21 18:17:55 1999 +0000 +++ b/lisp/textmodes/texinfo.el Fri Jan 22 14:03:06 1999 +0000 @@ -295,7 +295,7 @@ ("@\\(file\\|kbd\\|key\\|url\\|email\\){\\([^}]+\\)" 2 font-lock-string-face) ("@\\(samp\\|code\\|var\\|math\\){\\([^}]+\\)" 2 font-lock-variable-name-face) - ("@\\(cite\\|xref\\|pxref\\){\\([^}]+\\)" 2 font-lock-constant-face) + ("@\\(cite\\|x?ref\\|pxref\\){\\([^}]+\\)" 2 font-lock-constant-face) ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-function-name-face keep) ) "Additional expressions to highlight in TeXinfo mode.")