diff options
author | Nicholas Clark <nick@ccl4.org> | 2008-01-26 10:24:40 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2008-01-26 10:24:40 +0000 |
commit | c0a413d1892b414bcca7420c00e6725079449e3c (patch) | |
tree | 929c4815d50a49b4e28bc8851662b6e65650ee4d /dump.c | |
parent | d01136d6c9d281873ffd814253bf0fec93cf20f4 (diff) | |
download | perl-c0a413d1892b414bcca7420c00e6725079449e3c.tar.gz |
Change 33069 missed updating dump.c to dump PVIOs correctly.
p4raw-id: //depot/perl@33071
Diffstat (limited to 'dump.c')
-rw-r--r-- | dump.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1554,7 +1554,7 @@ Perl_do_sv_dump(pTHX_ I32 level, PerlIO *file, SV *sv, I32 nest, I32 maxnest, bo (UV) COP_SEQ_RANGE_HIGH(sv)); } else if ((type >= SVt_PVNV && type != SVt_PVAV && type != SVt_PVHV && type != SVt_PVCV && type != SVt_PVFM && type != SVt_REGEXP - && !isGV_with_GP(sv) && !SvVALID(sv)) + && type != SVt_PVIO && !isGV_with_GP(sv) && !SvVALID(sv)) || type == SVt_NV) { STORE_NUMERIC_LOCAL_SET_STANDARD(); /* %Vg doesn't work? --jhi */ |