In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/8bfa1b58816b4557fc9cccf7baadaf2534188549?hp=73cf5d5a6a3003e11799b4507e9f6336155196a3>
- Log ----------------------------------------------------------------- commit 8bfa1b58816b4557fc9cccf7baadaf2534188549 Author: Father Chrysostomos <[email protected]> Date: Fri Jul 15 16:04:53 2016 -0700 [perl #128621] #define PL_encoding to a NULL SV for non-core code, so that code that checks if(PL_encoding) will continue to compile and work. ----------------------------------------------------------------------- Summary of changes: perl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/perl.h b/perl.h index 1f19140..2702cc1 100644 --- a/perl.h +++ b/perl.h @@ -5285,6 +5285,7 @@ EXTCONST char *const PL_phase_names[]; # define PL_dirty cBOOL(PL_phase == PERL_PHASE_DESTRUCT) # define PL_amagic_generation PL_na +# define PL_encoding ((SV *)NULL) #endif /* !PERL_CORE */ #define PL_hints PL_compiling.cop_hints -- Perl5 Master Repository
