projects
/
p5sagit/p5-mst-13.2.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
2ed3a70
)
Compile under threads and MacOSX. For some reason newSVpvf
Artur Bergman [Mon, 10 Feb 2003 18:11:35 +0000 (18:11 +0000)]
was not exapnded.
p4raw-id: //depot/perl@18686
universal.c
patch
|
blob
|
blame
|
history
diff --git
a/universal.c
b/universal.c
index
a198fe6
..
f7b8691
100644
(file)
--- a/
universal.c
+++ b/
universal.c
@@
-361,7
+361,7
@@
XS(XS_version_new)
if (items == 3 )
{
char *vs = savepvn(SvPVX(ST(2)),SvCUR(ST(2)));
- version = newSVpvf("v%s",vs);
+ version = Perl_newSVpvf(aTHX_ "v%s",vs);
}
PUSHs(new_version(version));