From: Eli Zaretskii Date: Tue, 14 Sep 1999 10:15:51 +0000 (+0000) Subject: (texinfo-font-lock-keywords): Add uref, command, option, env and sc. X-Git-Tag: emacs-pretest-21.0.90~6735 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=0cf452f333d9f71b1d0ef13f39b7503a4170fdea;p=emacs.git (texinfo-font-lock-keywords): Add uref, command, option, env and sc. --- diff --git a/lisp/textmodes/texinfo.el b/lisp/textmodes/texinfo.el index 165a575ac43..385dd0c9d71 100644 --- a/lisp/textmodes/texinfo.el +++ b/lisp/textmodes/texinfo.el @@ -291,11 +291,11 @@ chapter." ;;("\\$\\([^$]*\\)\\$" 1 font-lock-string-face t) ("@\\([a-zA-Z]+\\|[^ \t\n]\\)" 1 font-lock-keyword-face) ;commands ("^\\*\\(.*\\)[\t ]*$" 1 font-lock-function-name-face t) ;menu items - ("@\\(emph\\|strong\\|b\\|i\\){\\([^}]+\\)" 2 font-lock-comment-face) + ("@\\(emph\\|strong\\|b\\|i\\|sc\\){\\([^}]+\\)" 2 font-lock-comment-face) ("@\\(file\\|kbd\\|key\\|url\\|email\\){\\([^}]+\\)" 2 font-lock-string-face) - ("@\\(samp\\|code\\|var\\|math\\){\\([^}]+\\)" + ("@\\(samp\\|code\\|var\\|math\\|env\\|command\\|option\\){\\([^}]+\\)" 2 font-lock-variable-name-face) - ("@\\(cite\\|x?ref\\|pxref\\){\\([^}]+\\)" 2 font-lock-constant-face) + ("@\\(cite\\|[ux]?ref\\|pxref\\){\\([^}]+\\)" 2 font-lock-constant-face) ("@\\(end\\|itemx?\\) +\\(.+\\)" 2 font-lock-function-name-face keep) ) "Additional expressions to highlight in TeXinfo mode.")