summary refs log tree commit diff stats
path: root/compiler/nimconf.nim
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2013-12-27 16:35:21 +0100
committerAraq <rumpf_a@web.de>2013-12-27 16:35:21 +0100
commita427648c48d99be292cb37b6c53bd1205414ad59 (patch)
tree499b22b27dc05334595db9114556a7db5ab8c1d6 /compiler/nimconf.nim
parent2df9b442c646e06cc577a723dc2592275bf9b6f5 (diff)
downloadNim-a427648c48d99be292cb37b6c53bd1205414ad59.tar.gz
case consistency part 2
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 ae6487744..d7ce0d57f 100644
--- a/compiler/nimconf.nim
+++ b/compiler/nimconf.nim
@@ -49,7 +49,7 @@ proc parseExpr(L: var TLexer, tok: var TToken): bool =
     var b = parseAndExpr(L, tok)
     result = result or b
 
-proc EvalppIf(L: var TLexer, tok: var TToken): bool = 
+proc evalppIf(L: var TLexer, tok: var TToken): bool = 
   ppGetTok(L, tok)            # skip 'if' or 'elif'
   result = parseExpr(L, tok)
   if tok.tokType == tkColon: ppGetTok(L, tok)