diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-02-20 19:00:22 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-02-20 19:00:22 +0000 |
commit | c84c465283025c72dfa40558418521b8e42b7290 (patch) | |
tree | 285b0b56947449f80159279646c736c3aebb484f /dump.c | |
parent | 5316d14db4aade2e88cbb15cc065195245c0ec51 (diff) | |
download | perl-c84c465283025c72dfa40558418521b8e42b7290.tar.gz |
PVCVs don't need XNVs either.
(And actually remove xcv_depth)
(And fix the copy lengths in bodies_by_type)
p4raw-id: //depot/perl@27249
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1304,7 +1304,7 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo PerlIO_putc(file, '\n'); } if ((type >= SVt_PVNV && type != SVt_PVAV && type != SVt_PVHV - && type != SVt_PVFM) + && type != SVt_PVCV && type != SVt_PVFM) || type == SVt_NV) { STORE_NUMERIC_LOCAL_SET_STANDARD(); /* %Vg doesn't work? --jhi */ |