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
@@ -135,3 +135,3 @@ OPTION(include-directory,I,DIR,
BEGIN
- gconf_preproc_add_include_dir (optarg);
+ grecs_preproc_add_include_dir (optarg);
END
@@ -161,3 +161,3 @@ OPTION(preprocessor,,COMMAND,
BEGIN
- gconf_preprocessor = optarg;
+ grecs_preprocessor = optarg;
END
@@ -167,3 +167,3 @@ OPTION(no-preprocessor,,,
BEGIN
- gconf_preprocessor = NULL;
+ grecs_preprocessor = NULL;
END
@@ -181,3 +181,3 @@ OPTION(dump-grammar-trace,,,
BEGIN
- gconf_gram_trace (1);
+ grecs_gram_trace (1);
END
@@ -187,3 +187,3 @@ OPTION(dump-lex-trace,,,
BEGIN
- gconf_lex_trace (1);
+ grecs_lex_trace (1);
END
@@ -204,9 +204,9 @@ parse_options(int argc, char *argv[])
GETOPT(argc, argv)
- if (pp_cmd_stack_init && gconf_preprocessor)
+ if (pp_cmd_stack_init && grecs_preprocessor)
{
char *defs = obstack_finish (&pp_cmd_stack);
- char *cmd = xmalloc (strlen (gconf_preprocessor) + strlen (defs) + 1);
- strcpy (cmd, gconf_preprocessor);
+ char *cmd = xmalloc (strlen (grecs_preprocessor) + strlen (defs) + 1);
+ strcpy (cmd, grecs_preprocessor);
strcat (cmd, defs);
- gconf_preprocessor = cmd;
+ grecs_preprocessor = cmd;
obstack_free (&pp_cmd_stack, NULL);

Return to:

Send suggestions and report system problems to the System administrator.