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 /intrpvar.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 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/intrpvar.h b/intrpvar.h index f8b20a55b9..2e9d1afe2b 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -397,13 +397,14 @@ PERLVARA(Ilast_swash_key,10, U8) PERLVAR(Ilast_swash_tmps, U8 *) PERLVAR(Ilast_swash_slen, STRLEN) -/* perly.c globals */ -PERLVAR(Iyydebug, int) -PERLVAR(Iyynerrs, int) -PERLVAR(Iyyerrflag, int) -PERLVAR(Iyychar, int) -PERLVAR(Iyyval, YYSTYPE) -PERLVAR(Iyylval, YYSTYPE) +/* ex perly.c globals. Now just placeholders for BINCOMPAT in 5.8.x + * XXX delete for 5.9.x */ +PERLVAR(IyydebugBINCOMPAT, int) +PERLVAR(IyynerrsBINCOMPAT, int) +PERLVAR(IyyerrflagBINCOMPAT, int) +PERLVAR(IyycharBINCOMPAT, int) +PERLVAR(IyyvalBINCOMPAT, YYSTYPE) +PERLVAR(IyylvalBINCOMPAT, YYSTYPE) PERLVARI(Iglob_index, int, 0) PERLVAR(Isrand_called, bool) |