aboutsummaryrefslogtreecommitdiff
path: root/src/cmdline.opt
diff options
context:
space:
mode:
Diffstat (limited to 'src/cmdline.opt')
-rw-r--r--src/cmdline.opt18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cmdline.opt b/src/cmdline.opt
index fd87e5e..3515072 100644
--- a/src/cmdline.opt
+++ b/src/cmdline.opt
@@ -133,7 +133,7 @@ GROUP(Preprocessor control)
133OPTION(include-directory,I,DIR, 133OPTION(include-directory,I,DIR,
134 [<add include directory>]) 134 [<add include directory>])
135BEGIN 135BEGIN
136 gconf_preproc_add_include_dir (optarg); 136 grecs_preproc_add_include_dir (optarg);
137END 137END
138 138
139OPTION(define,D,SYMBOL[=VALUE], 139OPTION(define,D,SYMBOL[=VALUE],
@@ -159,13 +159,13 @@ END
159OPTION(preprocessor,,COMMAND, 159OPTION(preprocessor,,COMMAND,
160 [<use COMMAND instead of the default preprocessor>]) 160 [<use COMMAND instead of the default preprocessor>])
161BEGIN 161BEGIN
162 gconf_preprocessor = optarg; 162 grecs_preprocessor = optarg;
163END 163END
164 164
165OPTION(no-preprocessor,,, 165OPTION(no-preprocessor,,,
166 [<disable preprocessing>]) 166 [<disable preprocessing>])
167BEGIN 167BEGIN
168 gconf_preprocessor = NULL; 168 grecs_preprocessor = NULL;
169END 169END
170 170
171GROUP(Debugging) 171GROUP(Debugging)
@@ -179,13 +179,13 @@ END
179OPTION(dump-grammar-trace,,, 179OPTION(dump-grammar-trace,,,
180 [<dump configuration grammar traces>]) 180 [<dump configuration grammar traces>])
181BEGIN 181BEGIN
182 gconf_gram_trace (1); 182 grecs_gram_trace (1);
183END 183END
184 184
185OPTION(dump-lex-trace,,, 185OPTION(dump-lex-trace,,,
186 [<dump lexical analyzer traces>]) 186 [<dump lexical analyzer traces>])
187BEGIN 187BEGIN
188 gconf_lex_trace (1); 188 grecs_lex_trace (1);
189END 189END
190 190
191GROUP([<Additional help>]) 191GROUP([<Additional help>])
@@ -202,13 +202,13 @@ void
202parse_options(int argc, char *argv[]) 202parse_options(int argc, char *argv[])
203{ 203{
204 GETOPT(argc, argv) 204 GETOPT(argc, argv)
205 if (pp_cmd_stack_init && gconf_preprocessor) 205 if (pp_cmd_stack_init && grecs_preprocessor)
206 { 206 {
207 char *defs = obstack_finish (&pp_cmd_stack); 207 char *defs = obstack_finish (&pp_cmd_stack);
208 char *cmd = xmalloc (strlen (gconf_preprocessor) + strlen (defs) + 1); 208 char *cmd = xmalloc (strlen (grecs_preprocessor) + strlen (defs) + 1);
209 strcpy (cmd, gconf_preprocessor); 209 strcpy (cmd, grecs_preprocessor);
210 strcat (cmd, defs); 210 strcat (cmd, defs);
211 gconf_preprocessor = cmd; 211 grecs_preprocessor = cmd;
212 obstack_free (&pp_cmd_stack, NULL); 212 obstack_free (&pp_cmd_stack, NULL);
213 } 213 }
214} 214}

Return to:

Send suggestions and report system problems to the System administrator.