diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-08-28 01:36:53 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-08-29 13:29:43 +0000 |
commit | ece599bdb7307c953714bad8b5a320ffa2cd0857 (patch) | |
tree | 167557343fc2599ff027bce8ea9b1b8d58765a2d /embedvar.h | |
parent | 444379fb158f55ef6465d6e50c03864ed09002d4 (diff) | |
download | perl-ece599bdb7307c953714bad8b5a320ffa2cd0857.tar.gz |
B::check_av() ; B::Deparse for CHECK blocks
Message-Id: <20020827233653.535bc211.rgarciasuarez@free.fr>
p4raw-id: //depot/perl@17804
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/embedvar.h b/embedvar.h index d6a30fbfad..1d76394729 100644 --- a/embedvar.h +++ b/embedvar.h @@ -210,6 +210,7 @@ #define PL_bufend (PERL_GET_INTERP->Ibufend) #define PL_bufptr (PERL_GET_INTERP->Ibufptr) #define PL_checkav (PERL_GET_INTERP->Icheckav) +#define PL_checkav_save (PERL_GET_INTERP->Icheckav_save) #define PL_collation_ix (PERL_GET_INTERP->Icollation_ix) #define PL_collation_name (PERL_GET_INTERP->Icollation_name) #define PL_collation_standard (PERL_GET_INTERP->Icollation_standard) @@ -512,6 +513,7 @@ #define PL_bufend (vTHX->Ibufend) #define PL_bufptr (vTHX->Ibufptr) #define PL_checkav (vTHX->Icheckav) +#define PL_checkav_save (vTHX->Icheckav_save) #define PL_collation_ix (vTHX->Icollation_ix) #define PL_collation_name (vTHX->Icollation_name) #define PL_collation_standard (vTHX->Icollation_standard) @@ -817,6 +819,7 @@ #define PL_Ibufend PL_bufend #define PL_Ibufptr PL_bufptr #define PL_Icheckav PL_checkav +#define PL_Icheckav_save PL_checkav_save #define PL_Icollation_ix PL_collation_ix #define PL_Icollation_name PL_collation_name #define PL_Icollation_standard PL_collation_standard |