summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/l-table.lua
diff options
context:
space:
mode:
authorHans Hagen <pragma@wxs.nl>2018-03-25 18:28:30 +0200
committerContext Git Mirror Bot <phg42.2a@gmail.com>2018-03-25 18:28:30 +0200
commit0175a693fcb853ecce7d49f6564895c2dbfd11f1 (patch)
treed3b9f67e3d63247c03c7fe5c72395735bd588f1e /tex/context/base/mkiv/l-table.lua
parent7eb3892205bf276b2f2db45f806f430e3fab82ac (diff)
downloadcontext-0175a693fcb853ecce7d49f6564895c2dbfd11f1.tar.gz
2018-03-25 17:40:00
Diffstat (limited to 'tex/context/base/mkiv/l-table.lua')
-rw-r--r--tex/context/base/mkiv/l-table.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/tex/context/base/mkiv/l-table.lua b/tex/context/base/mkiv/l-table.lua
index 269b89667..5cd65dd67 100644
--- a/tex/context/base/mkiv/l-table.lua
+++ b/tex/context/base/mkiv/l-table.lua
@@ -420,7 +420,7 @@ end
-- todo : copy without metatable
-local function copy(t, tables) -- taken from lua wiki, slightly adapted
+local function copy(t,tables) -- taken from lua wiki, slightly adapted
tables = tables or { }
local tcopy = { }
if not tables[t] then
@@ -431,7 +431,7 @@ local function copy(t, tables) -- taken from lua wiki, slightly adapted
if tables[i] then
i = tables[i]
else
- i = copy(i, tables)
+ i = copy(i,tables)
end
end
if type(v) ~= "table" then
@@ -439,7 +439,7 @@ local function copy(t, tables) -- taken from lua wiki, slightly adapted
elseif tables[v] then
tcopy[i] = tables[v]
else
- tcopy[i] = copy(v, tables)
+ tcopy[i] = copy(v,tables)
end
end
local mt = getmetatable(t)