diff lisp/help.el @ 20953:f3f9df46d008

Changed font-lock-reference-face to font-lock-constant-face.
author Simon Marshall <simon@gnu.org>
date Fri, 20 Feb 1998 14:58:27 +0000
parents 6566e48896f4
children 607ce9d7cf53
line wrap: on
line diff
--- a/lisp/help.el	Fri Feb 20 14:55:48 1998 +0000
+++ b/lisp/help.el	Fri Feb 20 14:58:27 1998 +0000
@@ -104,10 +104,10 @@
        ;;
        ;; Words inside `' which tend to be symbol names.
        (list (concat "`\\(" sym-char sym-char "+\\)'")
-	     1 'font-lock-reference-face t)
+	     1 'font-lock-constant-face t)
        ;;
-       ;; CLisp `:' keywords as references.
-       (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-reference-face t))))
+       ;; CLisp `:' keywords as builtins.
+       (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-builtin-face t))))
   "Default expressions to highlight in Help mode.")
 
 (defun help-mode ()