diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-07-31 18:17:16 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-07-31 18:17:16 +0000 |
commit | 00ea8ef5690832bab37a9f632232d023404262c9 (patch) | |
tree | 44366149e60138addf68b3a374e5fe50fdae5de6 /lisp/help.el | |
parent | 83bcc19108bb59591c32b2dc7dd7ce7c1a9b164a (diff) | |
download | emacs-00ea8ef5690832bab37a9f632232d023404262c9.tar.gz |
(help-font-lock-keywords): Undo July 26 change.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 5 |
1 files changed, 4 insertions, 1 deletions
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 "+\\)'") |