diff options
| author | Kevin B Kenny <kennykb@acm.org> | 2011-01-15 19:01:31 (GMT) |
|---|---|---|
| committer | Kevin B Kenny <kennykb@acm.org> | 2011-01-15 19:01:31 (GMT) |
| commit | 9f6759bae76d8886e090aeb92171e2f6160c5212 (patch) | |
| tree | 0ab0387ae49ad442a676cb29b6a29ae52feb552a /generic/tclStrToD.c | |
| parent | e3e74eff6858b6c266d22787982665ebd6d3662d (diff) | |
| download | tcl-9f6759bae76d8886e090aeb92171e2f6160c5212.zip tcl-9f6759bae76d8886e090aeb92171e2f6160c5212.tar.gz tcl-9f6759bae76d8886e090aeb92171e2f6160c5212.tar.bz2 | |
Removed code that suppressed zeroes in a context where zeroes cannot appear.
Diffstat (limited to 'generic/tclStrToD.c')
| -rwxr-xr-x | generic/tclStrToD.c | 7 |
1 files changed, 1 insertions, 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; } } |
