From d605f0c10937f15c69ff94b6446167bf79ddf220 Mon Sep 17 00:00:00 2001 From: John Millaway Date: Thu, 23 May 2002 15:53:37 +0000 Subject: [PATCH] Fixed bug where omission of user section 3 caused unmatched #ifdef's in generated code. --- gen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gen.c b/gen.c index 4b2e604..2394f58 100644 --- a/gen.c +++ b/gen.c @@ -1660,7 +1660,9 @@ void make_tables() line_directive_out( stdout, 1 ); if ( sectnum == 3 ) + { OUT_BEGIN_CODE(); (void) flexscan(); /* copy remainder of input to output */ OUT_END_CODE(); + } } -- 2.50.1