diff options
author | Araq <rumpf_a@web.de> | 2013-05-15 10:19:51 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2013-05-15 10:19:51 +0200 |
commit | b75d23b5e7c9fb8344b97fb38f070cd342679ecc (patch) | |
tree | 8f0b633764111eef57dfb6117b25bc1e4f6fa47b /compiler | |
parent | 635ad3b336bfcf89c3bb611156fd68f3cc953c30 (diff) | |
download | Nim-b75d23b5e7c9fb8344b97fb38f070cd342679ecc.tar.gz |
c2nim compiles again
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/c2nim/clex.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/c2nim/clex.nim b/compiler/c2nim/clex.nim index 3681fa8e1..5b648392f 100644 --- a/compiler/c2nim/clex.nim +++ b/compiler/c2nim/clex.nim @@ -410,7 +410,7 @@ proc getString(L: var TLexer, tok: var TToken) = of LF: pos = nimlexbase.HandleLF(L, pos) buf = L.buf - of lexbase.EndOfFile: + of nimlexbase.EndOfFile: var line2 = L.linenumber L.LineNumber = line lexMessagePos(L, errClosingQuoteExpected, L.lineStart) |