Change 29839 by [EMAIL PROTECTED] on 2007/01/15 18:33:02
make Dump display the SVf_BREAK flag
Affected files ...
... //depot/perl/dump.c#253 edit
Differences ...
==== //depot/perl/dump.c#253 (text) ====
Index: perl/dump.c
--- perl/dump.c#252~29727~ 2007-01-08 15:27:26.000000000 -0800
+++ perl/dump.c 2007-01-15 10:33:02.000000000 -0800
@@ -1390,6 +1390,7 @@
if (flags & SVf_OOK) sv_catpv(d, "OOK,");
if (flags & SVf_FAKE) sv_catpv(d, "FAKE,");
if (flags & SVf_READONLY) sv_catpv(d, "READONLY,");
+ if (flags & SVf_BREAK) sv_catpv(d, "BREAK,");
if (flags & SVf_AMAGIC) sv_catpv(d, "OVERLOAD,");
if (flags & SVp_IOK) sv_catpv(d, "pIOK,");
End of Patch.