summaryrefslogtreecommitdiff
path: root/tex/context/base/util-tab.lua
diff options
context:
space:
mode:
authorContext Git Mirror Bot <phg42.2a@gmail.com>2015-06-13 10:15:03 +0200
committerContext Git Mirror Bot <phg42.2a@gmail.com>2015-06-13 10:15:03 +0200
commitbafe29de59fdc2a37922e198aebc9b04f518f152 (patch)
tree0712e772ffb501f01c36ad58f2f2761c38dc0322 /tex/context/base/util-tab.lua
parentc727ed7331960718681fa4222bec81fb577b56fb (diff)
downloadcontext-bafe29de59fdc2a37922e198aebc9b04f518f152.tar.gz
2015-06-13 09:54:00
Diffstat (limited to 'tex/context/base/util-tab.lua')
-rw-r--r--tex/context/base/util-tab.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/util-tab.lua b/tex/context/base/util-tab.lua
index 0ab388826..d6f3d6731 100644
--- a/tex/context/base/util-tab.lua
+++ b/tex/context/base/util-tab.lua
@@ -557,7 +557,7 @@ local f_table_finish = formatters["}"]
local spaces = utilities.strings.newrepeater(" ")
-local serialize = table.serialize -- the extensive one, the one we started with
+local original_serialize = table.serialize -- the extensive one, the one we started with
-- there is still room for optimization: index run, key run, but i need to check with the
-- latest lua for the value of #n (with holes) .. anyway for tracing purposes we want
@@ -566,7 +566,7 @@ local serialize = table.serialize -- the extensive one, the one we started with
local function serialize(root,name,specification)
if type(specification) == "table" then
- return serialize(root,name,specification) -- the original one
+ return original_serialize(root,name,specification) -- the original one
end
local t -- = { }