diff options
author | Araq <rumpf_a@web.de> | 2013-04-19 09:07:01 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-04-19 09:07:01 +0200 |
commit | 04216fc7500e6c74f41c8f5aa743fb43a1ee65da (patch) | |
tree | a9220b54c10a33d5826ac007c34b8ffb40622f3f /compiler/nimconf.nim | |
parent | 4f09794be9fb9b96728078712f01e990e0021929 (diff) | |
download | Nim-04216fc7500e6c74f41c8f5aa743fb43a1ee65da.tar.gz |
first steps to the new parser/grammar
Diffstat (limited to 'compiler/nimconf.nim')
-rw-r--r-- | compiler/nimconf.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/nimconf.nim b/compiler/nimconf.nim index 0f0b76827..47d489556 100644 --- a/compiler/nimconf.nim +++ b/compiler/nimconf.nim @@ -19,7 +19,7 @@ import proc ppGetTok(L: var TLexer, tok: var TToken) = # simple filter rawGetTok(L, tok) - while tok.tokType in {tkInd, tkSad, tkDed, tkComment}: rawGetTok(L, tok) + while tok.tokType in {tkInd, tkComment}: rawGetTok(L, tok) proc parseExpr(L: var TLexer, tok: var TToken): bool proc parseAtom(L: var TLexer, tok: var TToken): bool = |