Change 34535 by [EMAIL PROTECTED] on 2008/10/20 19:06:48
Integrate:
[ 34525]
Integrate:
[ 34127]
Also dump the SvPVX of PVFMs.
Affected files ...
... //depot/maint-5.8/perl/dump.c#88 integrate
Differences ...
==== //depot/maint-5.8/perl/dump.c#88 (text) ====
Index: perl/dump.c
--- perl/dump.c#87~34300~ 2008-09-06 08:33:22.000000000 -0700
+++ perl/dump.c 2008-10-20 12:06:48.000000000 -0700
@@ -1317,7 +1317,7 @@
SvREFCNT_dec(d);
return;
}
- if (type <= SVt_PVLV || type == SVt_PVGV) {
+ if (type <= SVt_PVLV || type == SVt_PVGV || type == SVt_PVFM) {
if (SvPVX_const(sv)) {
Perl_dump_indent(aTHX_ level, file," PV = 0x%"UVxf" ",
PTR2UV(SvPVX_const(sv)));
if (SvOOK(sv))
End of Patch.