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:
2ed3a70
)
Compile under threads and MacOSX. For some reason newSVpvf
author
Artur Bergman
<sky@nanisky.com>
Mon, 10 Feb 2003 18:11:35 +0000
(18:11 +0000)
committer
Artur Bergman
<sky@nanisky.com>
Mon, 10 Feb 2003 18:11:35 +0000
(18:11 +0000)
was not exapnded.
p4raw-id: //depot/perl@18686
universal.c
patch
|
blob
|
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));