Mercurial > emacs
changeset 15810:add6684a3e67
(help-font-lock-keywords): Undo July 26 change.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 31 Jul 1996 18:17:16 +0000 |
parents | e367879c21df |
children | 08e349d3fa14 |
files | lisp/help.el |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/help.el Wed Jul 31 17:54:15 1996 +0000 +++ b/lisp/help.el Wed Jul 31 18:17:16 1996 +0000 @@ -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 "+\\)'")