diff options
author | Father Chrysostomos <sprout@cpan.org> | 2012-05-18 22:37:31 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2012-05-21 18:09:33 -0700 |
commit | bd6e6c126bf78b3ecdc6512201fd30a2c288fe7f (patch) | |
tree | fb761eab95e4a92124df9200a6622b8d151dcffb /mg_names.c | |
parent | 5fdfd519dc37986a14b6b55f3343f6dc6db73355 (diff) | |
download | perl-bd6e6c126bf78b3ecdc6512201fd30a2c288fe7f.tar.gz |
Annihilate ‘A’ magic
How ironic! Overloading is called ‘A’ magic internally all over the
place, because of the letter used as its magic type. But now it does
not even use that magic.
I left a comment in mg_vtable.pl, so that future maintainers will have
some clue as to what AMAGIC means.
Diffstat (limited to 'mg_names.c')
-rw-r--r-- | mg_names.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/mg_names.c b/mg_names.c index 43b1945f2d..62ba922fa8 100644 --- a/mg_names.c +++ b/mg_names.c @@ -13,8 +13,6 @@ { PERL_MAGIC_symtab, "symtab(:)" }, { PERL_MAGIC_backref, "backref(<)" }, { PERL_MAGIC_arylen_p, "arylen_p(@)" }, - { PERL_MAGIC_overload, "overload(A)" }, - { PERL_MAGIC_overload_elem, "overload_elem(a)" }, { PERL_MAGIC_bm, "bm(B)" }, { PERL_MAGIC_overload_table, "overload_table(c)" }, { PERL_MAGIC_regdata, "regdata(D)" }, |