Fix modlib.table.union

This commit is contained in:
Lars Mueller 2022-01-20 15:57:22 +01:00
parent d2b6b4ec64
commit 317123619b

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