summaryrefslogtreecommitdiff
path: root/tex/context/base/luat-sto.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/luat-sto.lua')
-rw-r--r--tex/context/base/luat-sto.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/tex/context/base/luat-sto.lua b/tex/context/base/luat-sto.lua
index 2c7a25aaa..30bb7d5bb 100644
--- a/tex/context/base/luat-sto.lua
+++ b/tex/context/base/luat-sto.lua
@@ -6,6 +6,8 @@ if not modules then modules = { } end modules ['luat-sto'] = {
license = "see context related readme files"
}
+-- we could nil some function in the productionrun
+
local type, next, setmetatable, getmetatable, collectgarbage = type, next, setmetatable, getmetatable, collectgarbage
local gmatch, format, write_nl = string.gmatch, string.format, texio.write_nl
local serialize, concat, sortedhash = table.serialize, table.concat, table.sortedhash
@@ -128,6 +130,10 @@ function statistics.reportstorage(whereto)
for k,v in sortedhash(catcodes.names) do
write_nl(whereto,format("%03i %s",k,concat(v," ")))
end
+ write_nl(whereto," ","used corenamespaces:"," ")
+ for k,v in sortedhash(interfaces.corenamespaces) do
+ write_nl(whereto,format("%03i %s",k,v))
+ end
write_nl(whereto," ")
end