aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorDave Love <[email protected]>1999-01-22 14:03:06 +0000
committerDave Love <[email protected]>1999-01-22 14:03:06 +0000
commitc16273442a9865330c5942956d09e461890e60ec (patch)
tree43ed515df5e2ed406dede045dcc211074023ffb9 /lisp
parent39bf81d3ebfb722457591f9b1932ea4e25d86f91 (diff)
(texinfo-font-lock-keywords): Match @ref.
Diffstat (limited to 'lisp')
-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 c5064805d7..40e77cf8bb 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.")