diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-05-22 22:22:32 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-05-23 00:56:11 -0700 |
commit | 6697815661d775deb113dbdbc2e6822d55d3522b (patch) | |
tree | ec378137a15c53b6e93dd6d0597ab3fd8f1952ae /embedvar.h | |
parent | ce9f52adaabc1b017e07815147af86476576e92d (diff) | |
download | perl-6697815661d775deb113dbdbc2e6822d55d3522b.tar.gz |
Excise PL_amagic_generation
The core is not using it any more. Every CPAN module that increments
it also does newXS, which triggers mro_method_changed_in, which is
sufficient; so nothing will break.
So, to keep those modules compiling, PL_amagic_generation is now an
alias to PL_na outside the core.
Diffstat (limited to 'embedvar.h')
-rw-r--r-- | embedvar.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/embedvar.h b/embedvar.h index 24d99e9610..c4a0fa9042 100644 --- a/embedvar.h +++ b/embedvar.h @@ -95,7 +95,6 @@ #define PL_XPosixSpace (vTHX->IXPosixSpace) #define PL_XPosixXDigit (vTHX->IXPosixXDigit) #define PL_Xpv (vTHX->IXpv) -#define PL_amagic_generation (vTHX->Iamagic_generation) #define PL_an (vTHX->Ian) #define PL_apiversion (vTHX->Iapiversion) #define PL_argvgv (vTHX->Iargvgv) |