From b2ddbda4e2deeaea494d7d137c46498353896cd5 Mon Sep 17 00:00:00 2001 From: g012 Date: Wed, 11 Oct 2017 23:24:21 +0200 Subject: [PATCH] Removed embedded long string parsing, as it does not conform to Lua 5.3 specs (it is Lua 5.0 behaviour). --- l65.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/l65.lua b/l65.lua index a942d44..0db5ef0 100644 --- a/l65.lua +++ b/l65.lua @@ -325,6 +325,7 @@ local function LexLua(src) foundEnd = false end else + --[[ if peek() == '[' then -- is there an embedded long string? local embedded = true @@ -342,6 +343,7 @@ local function LexLua(src) end end end + ]] foundEnd = false end --