Skip to content

Commit

Permalink
fix a lexer issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xebecnan committed Nov 3, 2021
1 parent a3497aa commit e376d08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lex.lua
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ return function(s, debug_hint, is_file)
end
end
end
i = saved
i = saved; c =s:sub(i, i)
return false
end

Expand All @@ -260,7 +260,7 @@ return function(s, debug_hint, is_file)
return true
end
end
i = saved
i = saved; c = s:sub(i, i)
return false
end

Expand Down

0 comments on commit e376d08

Please sign in to comment.