From: Nicholas Clark Date: Sun, 26 Nov 2000 00:07:50 +0000 (+0000) Subject: Re: pp_add -> pp_i_add efficiency hack? X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=999385671dd5756f60215f4393ec1ebfb28b812d;p=p5sagit%2Fp5-mst-13.2.git Re: pp_add -> pp_i_add efficiency hack? Message-ID: <20001126000750.A22446@plum.flirble.org> Infinit. p4raw-id: //depot/perl@7862 --- diff --git a/sv.c b/sv.c index 35cef28..5e18582 100644 --- a/sv.c +++ b/sv.c @@ -2010,6 +2010,7 @@ Perl_looks_like_number(pTHX_ SV *sv) s++; if (*s != 'I' && *s != 'i') return 0; s++; if (*s != 'T' && *s != 't') return 0; s++; if (*s != 'Y' && *s != 'y') return 0; + s++; } sawinf = 1; }