comparison lisp/progmodes/cpp.el @ 50858:54347668e2e9

(cpp-edit-list): Don't quote nil and t in docstrings.
author Juanma Barranquero <lekktu@gmail.com>
date Tue, 06 May 2003 17:41:48 +0000
parents 0d8b17d428b5
children a122df88ba3f
comparison
equal deleted inserted replaced
50857:48163c1bd10e 50858:54347668e2e9
90 "Alist of cpp macros and information about how they should be displayed. 90 "Alist of cpp macros and information about how they should be displayed.
91 Each entry is a list with the following elements: 91 Each entry is a list with the following elements:
92 0. The name of the macro (a string). 92 0. The name of the macro (a string).
93 1. Face used for text that is `ifdef' the macro. 93 1. Face used for text that is `ifdef' the macro.
94 2. Face used for text that is `ifndef' the macro. 94 2. Face used for text that is `ifndef' the macro.
95 3. `t', `nil', or `both' depending on what text may be edited." 95 3. t, nil, or `both' depending on what text may be edited."
96 :type '(repeat (list string face face 96 :type '(repeat (list string face face
97 (choice (const t) 97 (choice (const t)
98 (const nil) 98 (const nil)
99 (const both)))) 99 (const both))))
100 :group 'cpp) 100 :group 'cpp)