diff options
Diffstat (limited to 'Master/texmf-dist/scripts/context/lua/mtx-interface.lua')
-rw-r--r-- | Master/texmf-dist/scripts/context/lua/mtx-interface.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Master/texmf-dist/scripts/context/lua/mtx-interface.lua b/Master/texmf-dist/scripts/context/lua/mtx-interface.lua index 6a968d6b1b6..b82dd5abf22 100644 --- a/Master/texmf-dist/scripts/context/lua/mtx-interface.lua +++ b/Master/texmf-dist/scripts/context/lua/mtx-interface.lua @@ -411,10 +411,13 @@ function scripts.interface.editor(editor,split,forcedinterfaces) -- local collected = { } -- + report("generating files for %a",editor) + report("loading %a",xmlfile) local xmlroot = xml.load(xmlfile) xml.include(xmlroot,"cd:interfacefile","filename",true,function(s) - local fullname = resolvers.findfile(s) + local fullname = resolvers.findfile(s) if fullname and fullname ~= "" then + report("including %a",fullname) return io.loaddata(fullname) end end) |