diff options
Diffstat (limited to 'lisp/progmodes/cpp.el')
| -rw-r--r-- | lisp/progmodes/cpp.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/progmodes/cpp.el b/lisp/progmodes/cpp.el index 8ecfe79de3b..1b36fe2800d 100644 --- a/lisp/progmodes/cpp.el +++ b/lisp/progmodes/cpp.el | |||
| @@ -52,7 +52,7 @@ | |||
| 52 | :prefix "cpp-") | 52 | :prefix "cpp-") |
| 53 | 53 | ||
| 54 | (defcustom cpp-config-file (convert-standard-filename ".cpp.el") | 54 | (defcustom cpp-config-file (convert-standard-filename ".cpp.el") |
| 55 | "*File name to save cpp configuration." | 55 | "File name to save cpp configuration." |
| 56 | :type 'file | 56 | :type 'file |
| 57 | :group 'cpp) | 57 | :group 'cpp) |
| 58 | 58 | ||
| @@ -61,17 +61,17 @@ | |||
| 61 | :type '(choice (const invisible) (face))) | 61 | :type '(choice (const invisible) (face))) |
| 62 | 62 | ||
| 63 | (defcustom cpp-known-face 'invisible | 63 | (defcustom cpp-known-face 'invisible |
| 64 | "*Face used for known cpp symbols." | 64 | "Face used for known cpp symbols." |
| 65 | :type 'cpp-face | 65 | :type 'cpp-face |
| 66 | :group 'cpp) | 66 | :group 'cpp) |
| 67 | 67 | ||
| 68 | (defcustom cpp-unknown-face 'highlight | 68 | (defcustom cpp-unknown-face 'highlight |
| 69 | "*Face used for unknown cpp symbols." | 69 | "Face used for unknown cpp symbols." |
| 70 | :type 'cpp-face | 70 | :type 'cpp-face |
| 71 | :group 'cpp) | 71 | :group 'cpp) |
| 72 | 72 | ||
| 73 | (defcustom cpp-face-type 'light | 73 | (defcustom cpp-face-type 'light |
| 74 | "*Indicate what background face type you prefer. | 74 | "Indicate what background face type you prefer. |
| 75 | Can be either light or dark for color screens, mono for monochrome | 75 | Can be either light or dark for color screens, mono for monochrome |
| 76 | screens, and none if you don't use a window system and don't have | 76 | screens, and none if you don't use a window system and don't have |
| 77 | a color-capable display." | 77 | a color-capable display." |
| @@ -80,12 +80,12 @@ a color-capable display." | |||
| 80 | :group 'cpp) | 80 | :group 'cpp) |
| 81 | 81 | ||
| 82 | (defcustom cpp-known-writable t | 82 | (defcustom cpp-known-writable t |
| 83 | "*Non-nil means you are allowed to modify the known conditionals." | 83 | "Non-nil means you are allowed to modify the known conditionals." |
| 84 | :type 'boolean | 84 | :type 'boolean |
| 85 | :group 'cpp) | 85 | :group 'cpp) |
| 86 | 86 | ||
| 87 | (defcustom cpp-unknown-writable t | 87 | (defcustom cpp-unknown-writable t |
| 88 | "*Non-nil means you are allowed to modify the unknown conditionals." | 88 | "Non-nil means you are allowed to modify the unknown conditionals." |
| 89 | :type 'boolean | 89 | :type 'boolean |
| 90 | :group 'cpp) | 90 | :group 'cpp) |
| 91 | 91 | ||