fixes multiline comments

This commit is contained in:
Andreas Rumpf
2016-01-17 21:42:13 +01:00
parent 2c2ab6884c
commit 71cf1f650e
2 changed files with 20 additions and 2 deletions

View File

@@ -934,8 +934,10 @@ proc skip(L: var TLexer, tok: var TToken) =
if buf[pos+1] == '#': break
if buf[pos+1] == '[':
skipMultiLineComment(L, tok, pos+2, false)
return
while buf[pos] notin {CR, LF, nimlexbase.EndOfFile}: inc(pos)
pos = L.bufpos
buf = L.buf
else:
while buf[pos] notin {CR, LF, nimlexbase.EndOfFile}: inc(pos)
else:
break # EndOfFile also leaves the loop
L.bufpos = pos