summary refs log tree commit diff stats
path: root/rod
diff options
context:
space:
mode:
authorAndreas Rumpf <andreas@andreas-desktop>2010-03-09 19:37:26 +0100
committerAndreas Rumpf <andreas@andreas-desktop>2010-03-09 19:37:26 +0100
commitfe4cc78294fc3eed5335690e155a78dc119e39a8 (patch)
tree8e4a92889d39db17ec4d3eef2f899fe85bb663f8 /rod
parent684bb09773da6876980242850cdacb0aefee7bcc (diff)
downloadNim-fe4cc78294fc3eed5335690e155a78dc119e39a8.tar.gz
bugfix:hexadecimal ranges 0x00..0x01
Diffstat (limited to 'rod')
-rwxr-xr-xrod/scanner.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/rod/scanner.nim b/rod/scanner.nim
index 04a41fb5c..fb9a9fa2c 100755
--- a/rod/scanner.nim
+++ b/rod/scanner.nim
@@ -357,7 +357,7 @@ proc GetNumber(L: var TLexer): TToken =
         result.base = base16
         while true: 
           case L.buf[pos]
-          of 'G'..'Z', 'g'..'z', '.': 
+          of 'G'..'Z', 'g'..'z': 
             lexMessage(L, errInvalidNumber, result.literal)
             inc(pos)
           of '_':