summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-07-31 18:17:16 +0000
committerRichard M. Stallman <rms@gnu.org>1996-07-31 18:17:16 +0000
commit00ea8ef5690832bab37a9f632232d023404262c9 (patch)
tree44366149e60138addf68b3a374e5fe50fdae5de6
parent83bcc19108bb59591c32b2dc7dd7ce7c1a9b164a (diff)
downloademacs-00ea8ef5690832bab37a9f632232d023404262c9.tar.gz
(help-font-lock-keywords): Undo July 26 change.
-rw-r--r--lisp/help.el5
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 "+\\)'")