diff options
author | SoniEx2 <endermoneymod@gmail.com> | 2019-04-08 14:54:07 -0300 |
---|---|---|
committer | SoniEx2 <endermoneymod@gmail.com> | 2019-04-08 14:54:07 -0300 |
commit | 893ca6ca0d379c0fbf6a6b4d70b551a3005b9de8 (patch) | |
tree | f1d71c9d71f2d291a4e6409665d91844cc754952 /luatokens.lua | |
parent | 772e7a9755d1e7b83cfcd3d979e3dcafbbce0078 (diff) |
Fix issues with newline handling in long strings
Diffstat (limited to 'luatokens.lua')
-rw-r--r-- | luatokens.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/luatokens.lua b/luatokens.lua index d50f6c1..af53d45 100644 --- a/luatokens.lua +++ b/luatokens.lua @@ -386,7 +386,8 @@ end do local tlongstring = {} defs.longstring = tlongstring do local tllongstring_proper = selfify({[""] = "self", ["]"] = function(state, token) state.longstring_close = 0 return "maybe_end" end}) - tllongstring_proper[1] = collect_fallback + tllongstring_proper[1] = false -- placeholder for newline handling + tllongstring_proper[2] = collect_fallback do local tllmaybe_end = selfify({defs = defs}, "maybe_end") tllongstring_proper.maybe_end = tllmaybe_end |