diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-02-20 07:16:46 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-02-20 07:34:31 +0200 |
commit | cac52b5f4cfdc934cd3c5a68777c77d8d70f4b7c (patch) | |
tree | 30cadfe05c4652b07192bc5896e4cf8e8a6fbb34 /otfl-luat-dum.lua | |
parent | 3d54718f98098de05b995e35de7e18b5239a710d (diff) | |
download | luaotfload-cac52b5f4cfdc934cd3c5a68777c77d8d70f4b7c.tar.gz |
Add a new |luat-over| module
To minimize differences between original ConTeXt files, this module
overrides functions defined in |luat-dum| module.
Diffstat (limited to 'otfl-luat-dum.lua')
-rw-r--r-- | otfl-luat-dum.lua | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/otfl-luat-dum.lua b/otfl-luat-dum.lua index a594b64..19e95e2 100644 --- a/otfl-luat-dum.lua +++ b/otfl-luat-dum.lua @@ -43,7 +43,7 @@ tasks = { prependaction = dummyfunction, } callbacks = { - register = dummyfunction, + register = function(n,f) return callback.register(n,f) end, } -- we need to cheat a bit here @@ -72,25 +72,3 @@ function resolvers.findbinfile(name,kind) end return resolvers.find_file(name,(kind and remapper[kind]) or kind) end - -local write_nl, format, name = texio.write_nl, string.format, "luaotfload" - -function logs.report(category,fmt,...) - if fmt then - write_nl('log', format("%s | %s: %s",name,category,format(fmt,...))) - elseif category then - write_nl('log', format("%s | %s",name,category)) - else - write_nl('log', format("%s |",name)) - end -end - -function logs.simple(fmt,...) - if fmt then - write_nl('log', format("%s | %s",name,format(fmt,...))) - else - write_nl('log', format("%s |",name)) - end -end - -tex.ctxcatcodes = luatextra.catcodetables.latex |