Add dash to SymChars

This commit is contained in:
roose
2016-07-28 07:47:19 +06:00
parent 27a40cd5a4
commit 6cd7143c1c

View File

@@ -131,7 +131,7 @@ type
# implementation
const
SymChars = {'a'..'z', 'A'..'Z', '0'..'9', '_', '\x80'..'\xFF', '.', '/', '\\'}
SymChars = {'a'..'z', 'A'..'Z', '0'..'9', '_', '\x80'..'\xFF', '.', '/', '\\', '-'}
proc rawGetTok(c: var CfgParser, tok: var Token) {.gcsafe.}