summaryrefslogtreecommitdiffstats
path: root/Parser/tokenizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'Parser/tokenizer.c')
-rw-r--r--Parser/tokenizer.c2
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') {