projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e62f068
)
The definition of SvPVx_nolen_const is missing for non GNU-C compilers
author
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Tue, 7 Jun 2005 19:30:35 +0000
(19:30 +0000)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Tue, 7 Jun 2005 19:30:35 +0000
(19:30 +0000)
p4raw-id: //depot/perl@24741
sv.h
patch
|
blob
|
history
diff --git
a/sv.h
b/sv.h
index
9993312
..
cf116b8
100644
(file)
--- a/
sv.h
+++ b/
sv.h
@@
-1309,6
+1309,7
@@
Like C<sv_catsv> 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) ( \