diff options
author | Araq <rumpf_a@web.de> | 2014-03-13 22:29:48 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2014-03-13 22:29:48 +0100 |
commit | 3e056afb1c481d35403c93bc17307b46be5e20f2 (patch) | |
tree | 997aeee1899a13d4a7014d4713252eaf27effd2f /lib | |
parent | 1c35fb3c89bbac393b50c4bc6fe8205af2b7fb9d (diff) | |
download | Nim-3e056afb1c481d35403c93bc17307b46be5e20f2.tar.gz |
fixes #993
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/parsesql.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/parsesql.nim b/lib/pure/parsesql.nim index 3f9686e1e..bd8836f7c 100644 --- a/lib/pure/parsesql.nim +++ b/lib/pure/parsesql.nim @@ -267,7 +267,7 @@ proc getSymbol(c: var TSqlLexer, tok: var TToken) = while true: add(tok.literal, buf[pos]) Inc(pos) - if not (buf[pos] in {'a'..'z','A'..'Z','0'..'9','_','$', '\128'..'\255'}): + if buf[pos] notin {'a'..'z','A'..'Z','0'..'9','_','$', '\128'..'\255'}: break c.bufpos = pos tok.kind = tkIdentifier |