summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/data-inp.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tex/context/base/mkiv/data-inp.lua')
-rw-r--r--tex/context/base/mkiv/data-inp.lua3
1 files changed, 3 insertions, 0 deletions
diff --git a/tex/context/base/mkiv/data-inp.lua b/tex/context/base/mkiv/data-inp.lua
index 97fb8904b..569a66f4e 100644
--- a/tex/context/base/mkiv/data-inp.lua
+++ b/tex/context/base/mkiv/data-inp.lua
@@ -15,11 +15,14 @@ local registermethod = resolvers.registermethod
local finders = allocate { helpers = { }, notfound = function() end }
local openers = allocate { helpers = { }, notfound = function() end }
local loaders = allocate { helpers = { }, notfound = function() return false, nil, 0 end }
+local tracers = allocate { helpers = { }, notfound = function() end }
registermethod("finders", finders, "uri")
registermethod("openers", openers, "uri")
registermethod("loaders", loaders, "uri")
+registermethod("tracers", tracers, "uri")
resolvers.finders = finders
resolvers.openers = openers
resolvers.loaders = loaders
+resolvers.tracers = tracers