Fix modlib.table.union

master
Lars Mueller 2022-01-20 15:57:22 +01:00
parent d2b6b4ec64
commit 317123619b
1 changed files with 1 additions and 1 deletions

View File

@ -507,7 +507,7 @@ function deepcomplete(table, completions)
end
function merge_tables(table, other_table)
return add_all(copy(table), other_table)
return add_all(shallowcopy(table), other_table)
end
union = merge_tables