summaryrefslogtreecommitdiff
path: root/tex/context/base/l-table.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/l-table.lua')
-rw-r--r--tex/context/base/l-table.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/tex/context/base/l-table.lua b/tex/context/base/l-table.lua
index 889d25ac6..23477c655 100644
--- a/tex/context/base/l-table.lua
+++ b/tex/context/base/l-table.lua
@@ -152,7 +152,7 @@ function table.prepend(t, list)
end
function table.merge(t, ...) -- first one is target
- t = t or {}
+ t = t or { }
local lst = {...}
for i=1,#lst do
for k, v in next, lst[i] do