diff options
author | Nicholas Clark <nick@ccl4.org> | 2005-06-08 11:00:54 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2005-06-08 11:00:54 +0000 |
commit | 95fad9186c8842cfbbfcf6573db9e0dcadbce69c (patch) | |
tree | 68fe601b5d6a19d127fb2a0d344abf89b909e6ed /pp.h | |
parent | 555831ceb3ad48ad47fd135f445c0332f0a2af9b (diff) | |
download | perl-95fad9186c8842cfbbfcf6573db9e0dcadbce69c.tar.gz |
Eliminate more C<n_a>s
p4raw-id: //depot/perl@24757
Diffstat (limited to 'pp.h')
-rw-r--r-- | pp.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,7 @@ Pops a long off the stack. #define TOPm1s (*(sp-1)) #define TOPp1s (*(sp+1)) #define TOPp (SvPV(TOPs, PL_na)) /* deprecated */ -#define TOPpx (SvPV(TOPs, n_a)) +#define TOPpx (SvPV_nolen(TOPs)) #define TOPn (SvNV(TOPs)) #define TOPi ((IV)SvIV(TOPs)) #define TOPu ((UV)SvUV(TOPs)) |