comparison 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
comparison
equal deleted inserted replaced
20952:adcb58a1c0f3 20953:f3f9df46d008
102 font-lock-function-name-face 102 font-lock-function-name-face
103 font-lock-variable-name-face))) 103 font-lock-variable-name-face)))
104 ;; 104 ;;
105 ;; Words inside `' which tend to be symbol names. 105 ;; Words inside `' which tend to be symbol names.
106 (list (concat "`\\(" sym-char sym-char "+\\)'") 106 (list (concat "`\\(" sym-char sym-char "+\\)'")
107 1 'font-lock-reference-face t) 107 1 'font-lock-constant-face t)
108 ;; 108 ;;
109 ;; CLisp `:' keywords as references. 109 ;; CLisp `:' keywords as builtins.
110 (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-reference-face t)))) 110 (list (concat "\\<:" sym-char "+\\>") 0 'font-lock-builtin-face t))))
111 "Default expressions to highlight in Help mode.") 111 "Default expressions to highlight in Help mode.")
112 112
113 (defun help-mode () 113 (defun help-mode ()
114 "Major mode for viewing help text. 114 "Major mode for viewing help text.
115 Entry to this mode runs the normal hook `help-mode-hook'. 115 Entry to this mode runs the normal hook `help-mode-hook'.