From 03e0fbafa688bfae3a82fa868b4b1d5eceb4c2d4 Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Tue, 21 Apr 2009 11:00:54 +0300 Subject: Change yyggrecs_ prefix to yy_grecs_ --- src/preproc.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/preproc.c') diff --git a/src/preproc.c b/src/preproc.c index 8ae088d..1be7bbc 100644 --- a/src/preproc.c +++ b/src/preproc.c @@ -60,7 +60,7 @@ struct buffer_ctx FILE *infile; }; -extern int yy_flex_debug; +extern int yy_grecs_flex_debug; static struct buffer_ctx *context_stack; #define INFILE context_stack->infile @@ -450,7 +450,7 @@ push_source (const char *name, int once) ctx->prev = context_stack; context_stack = ctx; - if (yy_flex_debug) + if (yy_grecs_flex_debug) fprintf (stderr, "Processing file `%s'\n", name); pp_line_stmt (); @@ -475,14 +475,14 @@ pop_source () if (!context_stack) { - if (yy_flex_debug) + if (yy_grecs_flex_debug) fprintf (stderr, "End of input\n"); return 1; } LOCUS.line++; - if (yy_flex_debug) + if (yy_grecs_flex_debug) fprintf (stderr, "Resuming file `%s' at line %lu\n", LOCUS.file, (unsigned long) LOCUS.line); -- cgit v1.2.1