From: Richard M. Stallman Date: Wed, 31 Jul 1996 18:17:16 +0000 (+0000) Subject: (help-font-lock-keywords): Undo July 26 change. X-Git-Tag: emacs-19.34~52 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8743d4cb20748ac0384085a486236e2e6c5b3be0;p=emacs.git (help-font-lock-keywords): Undo July 26 change. --- 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 "+\\)'")