comparison lib/strtod.c @ 16235:18a38c9615f0

In commentary, do not use ` to quote.
author Paul Eggert <eggert@cs.ucla.edu>
date Thu, 05 Jan 2012 23:53:49 -0800
parents 8250f2777afc
children 498a2211d839
comparison
equal deleted inserted replaced
16234:f9b906545e2f 16235:18a38c9615f0
147 if (num <= DBL_MAX / base) 147 if (num <= DBL_MAX / base)
148 num = num * base + digit; 148 num = num * base + digit;
149 else 149 else
150 { 150 {
151 /* The value of the digit doesn't matter, since we have already 151 /* The value of the digit doesn't matter, since we have already
152 gotten as many digits as can be represented in a `double'. 152 gotten as many digits as can be represented in a 'double'.
153 This doesn't necessarily mean the result will overflow. 153 This doesn't necessarily mean the result will overflow.
154 The exponent may reduce it to within range. 154 The exponent may reduce it to within range.
155 155
156 We just need to record that there was another 156 We just need to record that there was another
157 digit so that we can multiply by 10 later. */ 157 digit so that we can multiply by 10 later. */