summaryrefslogtreecommitdiff
path: root/dump.c
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2005-06-09 19:02:43 +0000
committerNicholas Clark <nick@ccl4.org>2005-06-09 19:02:43 +0000
commit83bf042f79af6208af0620b081ee65543ecfed9f (patch)
treed15071a650bd72567ee4a7f5dcd96288f107ef40 /dump.c
parent0dd3f902b059d48560ea071c6510375fd9426efb (diff)
downloadperl-83bf042f79af6208af0620b081ee65543ecfed9f.tar.gz
Fixes the case of $a = \$#{[]}; and then accessing $$a
(but not \$#a after local @a or my @a leave a block) p4raw-id: //depot/perl@24783
Diffstat (limited to 'dump.c')
-rw-r--r--dump.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/dump.c b/dump.c
index bfa6727232..fed067df6d 100644
--- a/dump.c
+++ b/dump.c
@@ -970,6 +970,7 @@ Perl_do_magic_dump(pTHX_ I32 level, PerlIO *file, const MAGIC *mg, I32 nest, I32
else if (v == &PL_vtbl_amagicelem) s = "amagicelem";
else if (v == &PL_vtbl_backref) s = "backref";
else if (v == &PL_vtbl_utf8) s = "utf8";
+ else if (v == &PL_vtbl_arylen_p) s = "arylen_p";
if (s)
Perl_dump_indent(aTHX_ level, file, " MG_VIRTUAL = &PL_vtbl_%s\n", s);
else