>From 10f96b207dfdaccb4928e61faea1780f1368e70f Mon Sep 17 00:00:00 2001 From: Vaidheeswaran C Date: Tue, 26 May 2015 12:22:07 +0530 Subject: [PATCH] * lisp/info.el (Info-mode-font-lock-keywords): Fix regexp --- lisp/info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/info.el b/lisp/info.el index d635819..4dd6a33 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -4219,7 +4219,7 @@ 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)))) ;; Autoload cookie needed by desktop.el ;;;###autoload -- 1.7.10.4