From 8743d4cb20748ac0384085a486236e2e6c5b3be0 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 31 Jul 1996 18:17:16 +0000 Subject: [PATCH] (help-font-lock-keywords): Undo July 26 change. --- lisp/help.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/lisp/help.el b/lisp/help.el index 59cc1974a7d..2c39c4c6da4 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -97,7 +97,10 @@ ;; ;; The symbol itself. (list (concat "\\`\\(" name-char "+\\)\\(\\(:\\)\\|\\('\\)\\)") - '(1 font-lock-function-name-face)) + '(1 (if (match-beginning 3) + font-lock-function-name-face + font-lock-variable-name-face) + nil t)) ;; ;; Words inside `' which tend to be symbol names. (list (concat "`\\(" sym-char sym-char "+\\)'") -- 2.11.4.GIT