Change 24739 by [EMAIL PROTECTED] on 2005/06/07 18:33:08
Add SvPV_nolen_const and SvPV_nomg_const
Affected files ...
... //depot/perl/sv.h#198 edit
Differences ...
==== //depot/perl/sv.h#198 (text) ====
Index: perl/sv.h
--- perl/sv.h#197~24733~ Tue Jun 7 08:10:38 2005
+++ perl/sv.h Tue Jun 7 11:33:08 2005
@@ -1224,7 +1224,12 @@
((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
? SvPVX(sv) : sv_2pv_flags(sv, 0, SV_GMAGIC))
+#define SvPV_nolen_const(sv) \
+ ((SvFLAGS(sv) & (SVf_POK)) == SVf_POK \
+ ? SvPVX_const(sv) : sv_2pv_flags(sv, 0, SV_GMAGIC|SV_CONST_RETURN))
+
#define SvPV_nomg(sv, lp) SvPV_flags(sv, lp, 0)
+#define SvPV_nomg_const(sv, lp) SvPV_flags_const(sv, lp, 0)
/* ----*/
@@ -1273,6 +1278,7 @@
# define SvNVx(sv) ({SV *_sv = (SV*)(sv); SvNV(_sv); })
# define SvPVx(sv, lp) ({SV *_sv = (sv); SvPV(_sv, lp); })
# define SvPVx_const(sv, lp) ({SV *_sv = (sv); SvPV_const(_sv, lp); })
+# define SvPVx_nolen_const(sv) ({SV *_sv = (sv); SvPV_nolen_const(_sv); })
# define SvPVutf8x(sv, lp) ({SV *_sv = (sv); SvPVutf8(_sv, lp); })
# define SvPVbytex(sv, lp) ({SV *_sv = (sv); SvPVbyte(_sv, lp); })
# define SvTRUE(sv) ( \
End of Patch.