summaryrefslogtreecommitdiff
path: root/gen.c
diff options
context:
space:
mode:
authorJohn Millaway <john43@users.sourceforge.net>2002-05-23 15:53:37 +0000
committerJohn Millaway <john43@users.sourceforge.net>2002-05-23 15:53:37 +0000
commitd605f0c10937f15c69ff94b6446167bf79ddf220 (patch)
tree4fca03ff74629d04a4c82fb97d2b7bf2220eb6b9 /gen.c
parent05037ec684aa66446955b478d324bfec788008cd (diff)
Fixed bug where omission of user section 3 caused unmatched #ifdef's in generated code.
Diffstat (limited to 'gen.c')
-rw-r--r--gen.c2
1 files changed, 2 insertions, 0 deletions
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();
+ }
}