From: Gurusamy Sarathy Date: Sun, 26 Dec 1999 23:44:53 +0000 (+0000) Subject: fix typos X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f83ee824cada302b23f7337a82f3b9d44bde7629;p=p5sagit%2Fp5-mst-13.2.git fix typos p4raw-id: //depot/utfperl@4706 --- diff --git a/sv.h b/sv.h index a16dcdd..1374c87 100644 --- a/sv.h +++ b/sv.h @@ -705,7 +705,7 @@ struct xpvio { # define SvNVx(sv) ((PL_Sv = (sv)), SvNV(PL_Sv)) # define SvPVx(sv, lp) ((PL_Sv = (sv)), SvPV(PL_Sv, lp)) # define SvPVutf8x(sv, lp) ((PL_Sv = (sv)), SvPVutf8(PL_Sv, lp)) -# define SvPVutf8x(sv, lp) ((PL_Sv = (sv)), SvPVbyte(PL_Sv, lp)) +# define SvPVbytex(sv, lp) ((PL_Sv = (sv)), SvPVbyte(PL_Sv, lp)) # define SvTRUE(sv) ( \ !sv \ ? 0 \ diff --git a/toke.c b/toke.c index 8109c3e..035f06c 100644 --- a/toke.c +++ b/toke.c @@ -6801,12 +6801,12 @@ Perl_scan_num(pTHX_ char *start) /* if it starts with a v, it could be a version number */ case 'v': { - UV rev, ver, sver; char *pos = s; pos++; while (isDIGIT(*pos)) pos++; if (*pos == '.' && isDIGIT(pos[1])) { + UV rev; U8 tmpbuf[10]; U8 *tmpend; NV nshift = 1.0;