From: Yves Orton Date: Sun, 4 Jan 2009 23:45:02 +0000 (+0100) Subject: eliminate double stringification, the defines as done in git_version.h are already... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a49f3ea3320dd4b0e999281e3f394540c61f1b8a;p=p5sagit%2Fp5-mst-13.2.git eliminate double stringification, the defines as done in git_version.h are already quoted --- diff --git a/perl.c b/perl.c index 34bbbab..9091f2f 100644 --- 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