mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 15:33: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
|
-- Extract the character in question
|
||||||
local char = str:sub(nextpos, nextpos)
|
local char = str:sub(nextpos, nextpos)
|
||||||
|
|
||||||
|
print("[TOKENISE] char", char, "depth", nested_depth)
|
||||||
|
|
||||||
if char == "}" then
|
if char == "}" then
|
||||||
-- Decrease the nested depth
|
if nested_depth > 0 then
|
||||||
nested_depth = nested_depth - 1
|
-- Decrease the nested depth
|
||||||
-- Pop the start of this block off the stack and find this block's contents
|
nested_depth = nested_depth - 1
|
||||||
local block_start = table.remove(nested_stack, #nested_stack)
|
-- Pop the start of this block off the stack and find this block's contents
|
||||||
local substr = str:sub(block_start, nextpos - 1)
|
local block_start = table.remove(nested_stack, #nested_stack)
|
||||||
if #substr > 0 and nested_depth == 0 then table.insert(result, substr) end
|
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
|
elseif char == "{" then
|
||||||
-- Increase the nested depth, and store this position on the stack for later
|
-- Increase the nested depth, and store this position on the stack for later
|
||||||
nested_depth = nested_depth + 1
|
nested_depth = nested_depth + 1
|
||||||
|
|
Loading…
Reference in a new issue