From: Vern Paxson Date: Fri, 30 Mar 1990 02:43:05 +0000 (+0000) Subject: Changed generation of archaic "continue" to "goto yy_find_action" X-Git-Tag: flex-2-5-5b~508 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=6154e990a066c3ee91ee724908ceef795ebd64b7;p=flex Changed generation of archaic "continue" to "goto yy_find_action" --- diff --git a/gen.c b/gen.c index 7f8ec61..d3dad92 100644 --- a/gen.c +++ b/gen.c @@ -119,7 +119,7 @@ gen_bt_action() indent_puts( "yy_cp = yy_last_accepting_cpos;" ); indent_puts( "yy_current_state = yy_last_accepting_state;" ); - indent_puts( "continue; /* go to \"YY_DO_BEFORE_ACTION\" */" ); + indent_puts( "goto yy_find_action;" ); putchar( '\n' ); set_indent( 0 );