Add warning XXX that 09.9 isn't accepted.
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 @@
 				} 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') {