Change 34432 by [EMAIL PROTECTED] on 2008/09/27 09:27:08

        $? is only supposed to be upgraded to PVLV when COMPLEX_STATUS is set.
        Revert the conditional accidentally removed with change 25564.

Affected files ...

... //depot/maint-5.8/perl/gv.c#117 edit

Differences ...

==== //depot/maint-5.8/perl/gv.c#117 (text) ====
Index: perl/gv.c
--- perl/gv.c#116~33926~        2008-05-25 14:12:26.000000000 -0700
+++ perl/gv.c   2008-09-27 02:27:08.000000000 -0700
@@ -1186,7 +1186,9 @@
            goto magicalize;
 
        case '?':
+#ifdef COMPLEX_STATUS
            (void)SvUPGRADE(GvSVn(gv), SVt_PVLV);
+#endif
            goto magicalize;
 
        case '!':
End of Patch.

Reply via email to