From: Rafael Garcia-Suarez Date: Tue, 7 Jun 2005 19:30:35 +0000 (+0000) Subject: The definition of SvPVx_nolen_const is missing for non GNU-C compilers X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5f1478c393a03bf1defcb0d2dec70e6a17a8c864;p=p5sagit%2Fp5-mst-13.2.git The definition of SvPVx_nolen_const is missing for non GNU-C compilers p4raw-id: //depot/perl@24741 --- diff --git a/sv.h b/sv.h index 9993312..cf116b8 100644 --- a/sv.h +++ b/sv.h @@ -1309,6 +1309,7 @@ Like C but doesn't process magic. # define SvNVx(sv) ((PL_Sv = (sv)), SvNV(PL_Sv)) # define SvPVx(sv, lp) ((PL_Sv = (sv)), SvPV(PL_Sv, lp)) # define SvPVx_const(sv, lp) ((PL_Sv = (sv)), SvPV_const(PL_Sv, lp)) +# define SvPVx_nolen_const(sv) ((PL_Sv = (sv)), SvPV_nolen_const(PL_Sv)) # define SvPVutf8x(sv, lp) ((PL_Sv = (sv)), SvPVutf8(PL_Sv, lp)) # define SvPVbytex(sv, lp) ((PL_Sv = (sv)), SvPVbyte(PL_Sv, lp)) # define SvTRUE(sv) ( \