mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 07:23:00 +00:00
tokenize_commands: fix crash
This commit is contained in:
parent
c93f692f9d
commit
d6cd0cdb59
1 changed files with 10 additions and 6 deletions
|
@ -36,13 +36,17 @@ local function tokenise(str)
|
|||
-- Extract the character in question
|
||||
local char = str:sub(nextpos, nextpos)
|
||||
|
||||
print("[TOKENISE] char", char, "depth", nested_depth)
|
||||
|
||||
if char == "}" then
|
||||
if nested_depth > 0 then
|
||||
-- Decrease the nested depth
|
||||
nested_depth = nested_depth - 1
|
||||
-- Pop the start of this block off the stack and find this block's contents
|
||||
local block_start = table.remove(nested_stack, #nested_stack)
|
||||
local substr = str:sub(block_start, nextpos - 1)
|
||||
if #substr > 0 and nested_depth == 0 then table.insert(result, substr) end
|
||||
end
|
||||
elseif char == "{" then
|
||||
-- Increase the nested depth, and store this position on the stack for later
|
||||
nested_depth = nested_depth + 1
|
||||
|
|
Loading…
Reference in a new issue