diff options
Diffstat (limited to 'complex.c')
-rw-r--r-- | complex.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1751,9 +1751,9 @@ read_digits(const char **s, int strict, while (isdecimal(**s) || **s == '_') { if (**s == '_') { - if (strict) { - if (us) - return 0; + if (us) { + if (strict) return 0; + break; } us = 1; } |