This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
505afc7
)
eliminate double stringification, the defines as done in git_version.h are already...
author
Yves Orton
<demerphq@gmail.com>
Sun, 4 Jan 2009 23:45:02 +0000
(
00:45
+0100)
committer
Yves Orton
<demerphq@gmail.com>
Sun, 4 Jan 2009 23:45:02 +0000
(
00:45
+0100)
perl.c
patch
|
blob
|
blame
|
history
diff --git
a/perl.c
b/perl.c
index
34bbbab
..
9091f2f
100644
(file)
--- a/
perl.c
+++ b/
perl.c
@@
-3309,7
+3309,7
@@
Perl_moreswitches(pTHX_ const char *s)
{
SV* level= vstringify(PL_patchlevel);
#ifdef PERL_PATCHNUM
- SV* num= newSVpvn(
STRINGIFY(PERL_PATCHNUM),sizeof(STRINGIFY(PERL_PATCHNUM)
)-1);
+ SV* num= newSVpvn(
PERL_PATCHNUM,sizeof(PERL_PATCHNUM
)-1);
#ifdef PERL_GIT_UNCOMMITTED_CHANGES
sv_catpvs(num, "*");
#endif