Skip to content

Commit 0360832

Browse files
committed
Fix: ReadLine
1 parent 49fdaa4 commit 0360832

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

NeoLua/LuaLexer.cs

+2
Original file line numberDiff line numberDiff line change
@@ -593,6 +593,8 @@ public string ReadLine()
593593
{
594594
while (!IsEof && Cur != '\n')
595595
Eat();
596+
if (Cur == '\n')
597+
Next();
596598

597599
var curValue = CurValue;
598600
ResetCurValue();

0 commit comments

Comments
 (0)