diff options
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 |