summary refs log tree commit diff stats
path: root/compiler/nimconf.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-04-19 09:07:01 +0200
committerAraq <rumpf_a@web.de>2013-04-19 09:07:01 +0200
commit04216fc7500e6c74f41c8f5aa743fb43a1ee65da (patch)
treea9220b54c10a33d5826ac007c34b8ffb40622f3f /compiler/nimconf.nim
parent4f09794be9fb9b96728078712f01e990e0021929 (diff)
downloadNim-04216fc7500e6c74f41c8f5aa743fb43a1ee65da.tar.gz
first steps to the new parser/grammar
Diffstat (limited to 'compiler/nimconf.nim')
-rw-r--r--compiler/nimconf.nim2
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 =