diff options
author | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-29 09:35:02 +0000 |
---|---|---|
committer | Manuel Pégourié-Gonnard <mpg@elzevir.fr> | 2010-05-29 09:35:02 +0000 |
commit | bad9348a29610a5030b0ff1da29174f9fe2dbc98 (patch) | |
tree | 1a27079839d052f5b5760ec698e7d708a779a2c5 /Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua | |
parent | e62580242146a93f7836af785779cfd1a79e0ce1 (diff) |
luaotfload update (2010/05/28 v1.08a)
git-svn-id: svn://tug.org/texlive/trunk@18578 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua b/Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua index af5e05b364f..20d2b73dafc 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/otfl-luat-ovr.lua @@ -3,7 +3,7 @@ if not modules then modules = { } end modules ['luat-ovr'] = { comment = "companion to luatex-*.tex", author = "Khaled Hosny and Elie Roux", copyright = "Luaotfload Development Team", - license = "GPL" + license = "GNU GPL v2" } @@ -24,6 +24,16 @@ function logs.report(category,fmt,...) end end +function logs.info(category,fmt,...) + if fmt then + write_nl(format("%s | %s: %s",name,category,format(fmt,...))) + elseif category then + write_nl(format("%s | %s",name,category)) + else + write_nl(format("%s |",name)) + end +end + function logs.simple(fmt,...) if fmt then write_nl('log', format("%s | %s",name,format(fmt,...))) |