diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2004-02-14 02:06:53 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2004-02-14 02:06:53 +0000 |
commit | 0de566d74fdaf0a49123989fe8d4ad06603c6608 (patch) | |
tree | a7e6f359c44eb372067a0f7567f1e4ef9953ae22 /embedvar.h | |
parent | 21d1ba01f501963c6f61499860ffc70a78ab21c0 (diff) | |
download | perl-0de566d74fdaf0a49123989fe8d4ad06603c6608.tar.gz |
Switch from byacc to bison and simplify the perly.* regeneration
process
p4raw-id: //depot/perl@22302
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/embedvar.h b/embedvar.h index 08631b4e5f..104d853f7f 100644 --- a/embedvar.h +++ b/embedvar.h @@ -458,12 +458,12 @@ #define PL_xpvnv_root (vTHX->Ixpvnv_root) #define PL_xrv_arenaroot (vTHX->Ixrv_arenaroot) #define PL_xrv_root (vTHX->Ixrv_root) -#define PL_yychar (vTHX->Iyychar) -#define PL_yydebug (vTHX->Iyydebug) -#define PL_yyerrflag (vTHX->Iyyerrflag) -#define PL_yylval (vTHX->Iyylval) -#define PL_yynerrs (vTHX->Iyynerrs) -#define PL_yyval (vTHX->Iyyval) +#define PL_yycharBINCOMPAT (vTHX->IyycharBINCOMPAT) +#define PL_yydebugBINCOMPAT (vTHX->IyydebugBINCOMPAT) +#define PL_yyerrflagBINCOMPAT (vTHX->IyyerrflagBINCOMPAT) +#define PL_yylvalBINCOMPAT (vTHX->IyylvalBINCOMPAT) +#define PL_yynerrsBINCOMPAT (vTHX->IyynerrsBINCOMPAT) +#define PL_yyvalBINCOMPAT (vTHX->IyyvalBINCOMPAT) #else /* !MULTIPLICITY */ @@ -764,12 +764,12 @@ #define PL_Ixpvnv_root PL_xpvnv_root #define PL_Ixrv_arenaroot PL_xrv_arenaroot #define PL_Ixrv_root PL_xrv_root -#define PL_Iyychar PL_yychar -#define PL_Iyydebug PL_yydebug -#define PL_Iyyerrflag PL_yyerrflag -#define PL_Iyylval PL_yylval -#define PL_Iyynerrs PL_yynerrs -#define PL_Iyyval PL_yyval +#define PL_IyycharBINCOMPAT PL_yycharBINCOMPAT +#define PL_IyydebugBINCOMPAT PL_yydebugBINCOMPAT +#define PL_IyyerrflagBINCOMPAT PL_yyerrflagBINCOMPAT +#define PL_IyylvalBINCOMPAT PL_yylvalBINCOMPAT +#define PL_IyynerrsBINCOMPAT PL_yynerrsBINCOMPAT +#define PL_IyyvalBINCOMPAT PL_yyvalBINCOMPAT #define PL_TSv PL_Sv #define PL_TXpv PL_Xpv |