diff options
-rw-r--r-- | Parser/tokenizer.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Parser/tokenizer.c b/Parser/tokenizer.c index 009c193..3bd9530 100644 --- a/Parser/tokenizer.c +++ b/Parser/tokenizer.c @@ -510,6 +510,8 @@ tok_get(tok, p_start, p_end) } while (isxdigit(c)); } else { + /* XXX This is broken! E.g., + 09.9 should be accepted as float! */ /* Octal; c is first char of it */ /* There's no 'isoctdigit' macro, sigh */ while ('0' <= c && c < '8') { |