From: Dave Love Date: Fri, 22 Jan 1999 14:03:06 +0000 (+0000) Subject: (texinfo-font-lock-keywords): Match @ref. X-Git-Tag: emacs-20.4~812 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c16273442a9865330c5942956d09e461890e60ec;p=emacs.git (texinfo-font-lock-keywords): Match @ref. --- diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index c5064805d7b..40e77cf8bb7 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -295,7 +295,7 @@ chapter." ("@\\(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.")