From: John Millaway Date: Thu, 23 May 2002 15:53:37 +0000 (+0000) Subject: Fixed bug where omission of user section 3 caused unmatched #ifdef's in generated... X-Git-Tag: flex-2-5-10~59 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d605f0c10937f15c69ff94b6446167bf79ddf220;p=flex Fixed bug where omission of user section 3 caused unmatched #ifdef's in generated code. --- 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(); + } }