summaryrefslogtreecommitdiff
path: root/tex/context/base/trac-tex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/trac-tex.lua')
-rw-r--r--tex/context/base/trac-tex.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/tex/context/base/trac-tex.lua b/tex/context/base/trac-tex.lua
index 8435efafd..dbd35b56e 100644
--- a/tex/context/base/trac-tex.lua
+++ b/tex/context/base/trac-tex.lua
@@ -18,7 +18,7 @@ function trackers.save_hash()
saved = texhashtokens()
end
-function trackers.dump_hash(filename,delta)
+function trackers.dumphashtofile(filename,delta)
local list, hash, command_name = { }, texhashtokens(), token.command_name
for name, token in next, hash do
if not delta or not saved[name] then
@@ -42,7 +42,7 @@ local delta = nil
local function dump_hash(wanteddelta)
if delta == nil then
saved = saved or texhashtokens() -- no need for trackers.dump_hash
- luatex.register_stop_actions(1,function() dump_hash(nil,wanteddelta) end) -- at front
+ luatex.registerstopactions(1,function() dump_hash(nil,wanteddelta) end) -- at front
end
delta = wanteddelta
end