>From 0cdbf4e42aeceff1f3abb0d88ee2d4ad08023a7b Mon Sep 17 00:00:00 2001 From: Vaidheeswaran C Date: Sun, 31 May 2015 09:23:41 +0530 Subject: [PATCH] lisp/info.el (Info-mode-font-lock-keywords): Add a keyword * lisp/info.el (Info-mode-font-lock-keywords): Fontify text rendered with @code, @kbd etc. --- lisp/info.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/info.el b/lisp/info.el index 80428e7..1add13c 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -4219,7 +4219,8 @@ With a zero prefix arg, put the name inside a function call to `info'." "Face used for quoted elements.") (defvar Info-mode-font-lock-keywords - '(("‘\\([^’]*\\)’" (1 'Info-quoted)))) + '(("‘\\([^’]*\\)’" (1 'Info-quoted)) + ("`\\([^']*\\)'" (1 'font-lock-function-name-face)))) ;; Autoload cookie needed by desktop.el ;;;###autoload -- 1.7.10.4