* tests/local.at (_AT_BISON_OPTION_PUSHDEFS): Do not use

local variables whose names begin with 'yy'.
* tests/calc.at (_AT_DATA_CALC_Y): Likewise.
This commit is contained in:
Paul Eggert
2005-09-21 21:05:53 +00:00
parent 58b90cc2d8
commit ebc3737ebf
3 changed files with 12 additions and 7 deletions

View File

@@ -79,14 +79,14 @@ m4_pushdef([AT_PURE_LEX_IF],
[AT_LALR1_CC_IF([$1], [$2])])])
AT_PURE_LEX_IF(
[m4_pushdef([AT_LOC], [(*yylloc)])
m4_pushdef([AT_VAL], [(*yylval)])
[m4_pushdef([AT_LOC], [(*llocp)])
m4_pushdef([AT_VAL], [(*lvalp)])
m4_pushdef([AT_LEX_FORMALS],
[YYSTYPE *yylval[]AT_LOCATION_IF([, YYLTYPE *yylloc])])
[YYSTYPE *lvalp[]AT_LOCATION_IF([, YYLTYPE *llocp])])
m4_pushdef([AT_LEX_ARGS],
[yylval[]AT_LOCATION_IF([, yylloc])])
[lvalp[]AT_LOCATION_IF([, llocp])])
m4_pushdef([AT_USE_LEX_ARGS],
[(void) yylval;AT_LOCATION_IF([(void) yylloc])])
[(void) lvalp;AT_LOCATION_IF([(void) llocp])])
m4_pushdef([AT_LEX_PRE_FORMALS],
[AT_LEX_FORMALS, ])
m4_pushdef([AT_LEX_PRE_ARGS],