summaryrefslogtreecommitdiff
path: root/nfa.c
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1994-12-03 11:26:39 +0000
committerVern Paxson <vern@ee.lbl.gov>1994-12-03 11:26:39 +0000
commit10b195c219b555ee449c913372193b143b672776 (patch)
treeb6239c90ecdcdef70aa62fab27413f672c4252ea /nfa.c
parentcd92d86644b86b095c14d13895dab025c72038dc (diff)
YY_RULE_SETUP
Diffstat (limited to 'nfa.c')
-rw-r--r--nfa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nfa.c b/nfa.c
index d4a994d..9d95e1f 100644
--- a/nfa.c
+++ b/nfa.c
@@ -265,10 +265,10 @@ int mach, variable_trail_rule, headcnt, trailcnt;
/* Okay, in the action code at this point yytext and yyleng have
* their proper final values for this rule, so here's the point
* to do any user action. But don't do it for continued actions,
- * as that'll result in multiple YY_USER_ACTION's.
+ * as that'll result in multiple YY_RULE_SETUP's.
*/
if ( ! continued_action )
- add_action( "YY_USER_ACTION\n" );
+ add_action( "YY_RULE_SETUP\n" );
line_directive_out( (FILE *) 0, 1 );
}