From f1e18bf51337c961ce3f57362d0fc1a6584af378 Mon Sep 17 00:00:00 2001 From: Kevin B Kenny Date: Sat, 15 Jan 2011 19:01:31 +0000 Subject: Removed code that suppressed zeroes in a context where zeroes cannot appear. --- generic/tclStrToD.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/generic/tclStrToD.c b/generic/tclStrToD.c index 53ffedd..67c797f 100755 --- a/generic/tclStrToD.c +++ b/generic/tclStrToD.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclStrToD.c,v 1.53 2011/01/15 18:10:19 kennykb Exp $ + * RCS: @(#) $Id: tclStrToD.c,v 1.54 2011/01/15 19:01:31 kennykb Exp $ */ #include "tclInt.h" @@ -3335,11 +3335,6 @@ ShorteningBignumConversionPowD( *s++ = '9'; s = BumpUp(s, retval, &k); break; - } else if (mp_iszero(&b)) { - while (*--s == '0') { - /* do nothing */ - } - ++s; } } -- cgit v0.12