diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2007-05-04 22:18:42 +0000 |
---|---|---|
committer | Dave Mitchell <davem@fdisolutions.com> | 2007-05-04 22:18:42 +0000 |
commit | f06b58485d86282d0dbf47ffb2a797860a8346a7 (patch) | |
tree | 07c4e5c03fed4ea4d26bc3992145d69cc6e14b04 /embedvar.h | |
parent | a78e478ad711fa7fa8f46adc6709dd5ab38118c6 (diff) | |
download | perl-f06b58485d86282d0dbf47ffb2a797860a8346a7.tar.gz |
move some more variables into the PL_parser struct:
PL_bufptr PL_oldbufptr PL_oldoldbufptr
PL_linestart PL_bufend
PL_last_uni PL_last_lop PL_last_lop_op
p4raw-id: //depot/perl@31147
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/embedvar.h b/embedvar.h index 7f64f8e4fe..c458948782 100644 --- a/embedvar.h +++ b/embedvar.h @@ -154,8 +154,6 @@ #define PL_bitcount (vTHX->Ibitcount) #define PL_body_arenas (vTHX->Ibody_arenas) #define PL_body_roots (vTHX->Ibody_roots) -#define PL_bufend (vTHX->Ibufend) -#define PL_bufptr (vTHX->Ibufptr) #define PL_checkav (vTHX->Icheckav) #define PL_checkav_save (vTHX->Icheckav_save) #define PL_clocktick (vTHX->Iclocktick) @@ -228,20 +226,16 @@ #define PL_inplace (vTHX->Iinplace) #define PL_isarev (vTHX->Iisarev) #define PL_known_layers (vTHX->Iknown_layers) -#define PL_last_lop (vTHX->Ilast_lop) -#define PL_last_lop_op (vTHX->Ilast_lop_op) #define PL_last_swash_hv (vTHX->Ilast_swash_hv) #define PL_last_swash_key (vTHX->Ilast_swash_key) #define PL_last_swash_klen (vTHX->Ilast_swash_klen) #define PL_last_swash_slen (vTHX->Ilast_swash_slen) #define PL_last_swash_tmps (vTHX->Ilast_swash_tmps) -#define PL_last_uni (vTHX->Ilast_uni) #define PL_lastfd (vTHX->Ilastfd) #define PL_laststatval (vTHX->Ilaststatval) #define PL_laststype (vTHX->Ilaststype) #define PL_lex_state (vTHX->Ilex_state) #define PL_lineary (vTHX->Ilineary) -#define PL_linestart (vTHX->Ilinestart) #define PL_localpatches (vTHX->Ilocalpatches) #define PL_lockhook (vTHX->Ilockhook) #define PL_madskills (vTHX->Imadskills) @@ -276,9 +270,7 @@ #define PL_numeric_name (vTHX->Inumeric_name) #define PL_numeric_radix_sv (vTHX->Inumeric_radix_sv) #define PL_numeric_standard (vTHX->Inumeric_standard) -#define PL_oldbufptr (vTHX->Ioldbufptr) #define PL_oldname (vTHX->Ioldname) -#define PL_oldoldbufptr (vTHX->Ioldoldbufptr) #define PL_op_mask (vTHX->Iop_mask) #define PL_origalen (vTHX->Iorigalen) #define PL_origargc (vTHX->Iorigargc) @@ -417,8 +409,6 @@ #define PL_Ibitcount PL_bitcount #define PL_Ibody_arenas PL_body_arenas #define PL_Ibody_roots PL_body_roots -#define PL_Ibufend PL_bufend -#define PL_Ibufptr PL_bufptr #define PL_Icheckav PL_checkav #define PL_Icheckav_save PL_checkav_save #define PL_Iclocktick PL_clocktick @@ -491,20 +481,16 @@ #define PL_Iinplace PL_inplace #define PL_Iisarev PL_isarev #define PL_Iknown_layers PL_known_layers -#define PL_Ilast_lop PL_last_lop -#define PL_Ilast_lop_op PL_last_lop_op #define PL_Ilast_swash_hv PL_last_swash_hv #define PL_Ilast_swash_key PL_last_swash_key #define PL_Ilast_swash_klen PL_last_swash_klen #define PL_Ilast_swash_slen PL_last_swash_slen #define PL_Ilast_swash_tmps PL_last_swash_tmps -#define PL_Ilast_uni PL_last_uni #define PL_Ilastfd PL_lastfd #define PL_Ilaststatval PL_laststatval #define PL_Ilaststype PL_laststype #define PL_Ilex_state PL_lex_state #define PL_Ilineary PL_lineary -#define PL_Ilinestart PL_linestart #define PL_Ilocalpatches PL_localpatches #define PL_Ilockhook PL_lockhook #define PL_Imadskills PL_madskills @@ -539,9 +525,7 @@ #define PL_Inumeric_name PL_numeric_name #define PL_Inumeric_radix_sv PL_numeric_radix_sv #define PL_Inumeric_standard PL_numeric_standard -#define PL_Ioldbufptr PL_oldbufptr #define PL_Ioldname PL_oldname -#define PL_Ioldoldbufptr PL_oldoldbufptr #define PL_Iop_mask PL_op_mask #define PL_Iorigalen PL_origalen #define PL_Iorigargc PL_origargc |