summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-14 20:47:59 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-14 20:47:59 -0700
commit4c97482494e6170733f4b2143199cff3abec5419 (patch)
tree8e609fb6ea8912ce92092f33cce2f70da50e1a0b /ChangeLog
parentf1a5e50f78927a362f244f0adfc1d23813c93073 (diff)
downloadtxr-4c97482494e6170733f4b2143199cff3abec5419.tar.gz
txr-4c97482494e6170733f4b2143199cff3abec5419.tar.bz2
txr-4c97482494e6170733f4b2143199cff3abec5419.zip
Diagnose trailing junk in numeric literals.
* parser.l: Combining the handling of hex, octal and binary numeric literals into a single rule. Implementing an additional rule which diagnoses such tokens that have trailing junk. Thus, something like #x1F2AZ is now invalid syntax.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog9
1 files changed, 9 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4df75cc6..23b2704b 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2015-04-14 Kaz Kylheku <kaz@kylheku.com>
+
+ Diagnose trailing junk in numeric literals.
+
+ * parser.l: Combining the handling of hex, octal and binary numeric
+ literals into a single rule. Implementing an additional rule which
+ diagnoses such tokens that have trailing junk. Thus, something
+ like #x1F2AZ is now invalid syntax.
+
2015-04-11 Kaz Kylheku <kaz@kylheku.com>
Implementing while* and until* loops.