summaryrefslogtreecommitdiff
path: root/sv.c
diff options
context:
space:
mode:
authorFather Chrysostomos <sprout@cpan.org>2012-05-22 22:22:32 -0700
committerFather Chrysostomos <sprout@cpan.org>2012-05-23 00:56:11 -0700
commit6697815661d775deb113dbdbc2e6822d55d3522b (patch)
treeec378137a15c53b6e93dd6d0597ab3fd8f1952ae /sv.c
parentce9f52adaabc1b017e07815147af86476576e92d (diff)
downloadperl-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 'sv.c')
-rw-r--r--sv.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/sv.c b/sv.c
index 1f5e2f0ba4..c96a81d948 100644
--- a/sv.c
+++ b/sv.c
@@ -13056,8 +13056,6 @@ perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_hints = proto_perl->Ihints;
- PL_amagic_generation = proto_perl->Iamagic_generation;
-
#ifdef USE_LOCALE_COLLATE
PL_collation_ix = proto_perl->Icollation_ix;
PL_collation_standard = proto_perl->Icollation_standard;