Undo accidental perl.h part of #15295 (wait for #15297)
authorJarkko Hietaniemi <jhi@iki.fi>
Mon, 18 Mar 2002 14:28:10 +0000 (14:28 +0000)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 18 Mar 2002 14:28:10 +0000 (14:28 +0000)
p4raw-id: //depot/perl@15296

perl.h

diff --git a/perl.h b/perl.h
index 02e3f9c..f7bf179 100644 (file)
--- a/perl.h
+++ b/perl.h
@@ -3183,7 +3183,7 @@ struct perl_debug_pad {
 };
 
 #define PERL_DEBUG_PAD(i)      &(PL_debug_pad.pad[i])
-#define PERL_DEBUG_PAD_ZERO(i) (SvPVX(PERL_DEBUG_PAD(i))[0] = 0, SvCUR(PERL_DEBUG_PAD(i)) = 0, PERL_DEBUG_PAD(i))
+#define PERL_DEBUG_PAD_ZERO(i) (sv_setpvn(PERL_DEBUG_PAD(i), "", 0), PERL_DEBUG_PAD(i))
 
 /* Enable variables which are pointers to functions */
 typedef void (CPERLscope(*peep_t))(pTHX_ OP* o);