Change 24723 by [EMAIL PROTECTED] on 2005/06/07 12:06:13
POPpx needs a const equivalent.
Affected files ...
... //depot/perl/pp.h#64 edit
Differences ...
==== //depot/perl/pp.h#64 (text) ====
Index: perl/pp.h
--- perl/pp.h#63~24489~ Mon May 16 09:56:43 2005
+++ perl/pp.h Tue Jun 7 05:06:13 2005
@@ -129,6 +129,7 @@
#define POPs (*sp--)
#define POPp (SvPVx(POPs, PL_na)) /* deprecated */
#define POPpx (SvPVx(POPs, n_a))
+#define POPpconstx (SvPVx_const(POPs, n_a))
#define POPpbytex (SvPVbytex(POPs, n_a))
#define POPn (SvNVx(POPs))
#define POPi ((IV)SvIVx(POPs))
End of Patch.