comparison lisp/progmodes/cpp.el @ 13974:37cfc82fe02d

(cpp-unknown-face, cpp-face-mono-list, cpp-face-all-list): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Thu, 04 Jan 1996 23:31:45 +0000
parents 3e9e8b468bc1
children 83f275dcd93a
comparison
equal deleted inserted replaced
13973:4c199361d7ff 13974:37cfc82fe02d
52 52
53 (defvar cpp-known-face 'invisible 53 (defvar cpp-known-face 'invisible
54 "*Face used for known cpp symbols.") 54 "*Face used for known cpp symbols.")
55 55
56 (defvar cpp-unknown-face 'highlight 56 (defvar cpp-unknown-face 'highlight
57 "*Face used for unknown cpp cymbols.") 57 "*Face used for unknown cpp symbols.")
58 58
59 (defvar cpp-face-type 'light 59 (defvar cpp-face-type 'light
60 "*Indicate what background face type you prefer. 60 "*Indicate what background face type you prefer.
61 Can be either light or dark for color screens, mono for monochrome 61 Can be either light or dark for color screens, mono for monochrome
62 screens, and none if you don't use a window system.") 62 screens, and none if you don't use a window system.")
131 (defvar cpp-face-mono-list 131 (defvar cpp-face-mono-list
132 '(("bold" . 'bold) 132 '(("bold" . 'bold)
133 ("bold-italic" . 'bold-italic) 133 ("bold-italic" . 'bold-italic)
134 ("italic" . 'italic) 134 ("italic" . 'italic)
135 ("underline" . 'underline)) 135 ("underline" . 'underline))
136 "Alist of names and faces to be used for monocrome screens.") 136 "Alist of names and faces to be used for monochrome screens.")
137 137
138 (defvar cpp-face-none-list 138 (defvar cpp-face-none-list
139 '(("default" . default) 139 '(("default" . default)
140 ("invisible" . invisible)) 140 ("invisible" . invisible))
141 "Alist of names and faces available even if you don't use a window system.") 141 "Alist of names and faces available even if you don't use a window system.")
143 (defvar cpp-face-all-list 143 (defvar cpp-face-all-list
144 (append cpp-face-light-list 144 (append cpp-face-light-list
145 cpp-face-dark-list 145 cpp-face-dark-list
146 cpp-face-mono-list 146 cpp-face-mono-list
147 cpp-face-none-list) 147 cpp-face-none-list)
148 "All faces used for highligting text inside cpp conditionals.") 148 "All faces used for highlighting text inside cpp conditionals.")
149 149
150 ;;; Parse Buffer: 150 ;;; Parse Buffer:
151 151
152 (defvar cpp-parse-symbols nil 152 (defvar cpp-parse-symbols nil
153 "List of cpp macros used in the local buffer.") 153 "List of cpp macros used in the local buffer.")