diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2011-10-04 01:39:17 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2011-10-04 01:39:17 +0200 |
commit | 560adec29f2a0619545984f274220757b3e4ebb0 (patch) | |
tree | be8ff7eca4c572bfbf04aa24041d76cadf07243c /otfl-font-lua.lua | |
parent | 479745e00677d933056cf25f1fc2e904a4b9c567 (diff) | |
download | luaotfload-560adec29f2a0619545984f274220757b3e4ebb0.tar.gz |
Rename files to follow new ConTeXt names
Diffstat (limited to 'otfl-font-lua.lua')
-rw-r--r-- | otfl-font-lua.lua | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/otfl-font-lua.lua b/otfl-font-lua.lua deleted file mode 100644 index ec3fe38..0000000 --- a/otfl-font-lua.lua +++ /dev/null @@ -1,33 +0,0 @@ -if not modules then modules = { } end modules ['luatex-fonts-lua'] = { - version = 1.001, - comment = "companion to luatex-*.tex", - author = "Hans Hagen, PRAGMA-ADE, Hasselt NL", - copyright = "PRAGMA ADE / ConTeXt Development Team", - license = "see context related readme files" -} - -if context then - texio.write_nl("fatal error: this module is not for context") - os.exit() -end - -local fonts = fonts -fonts.formats.lua = "lua" - -function fonts.readers.lua(specification) - local fullname = specification.filename or "" - if fullname == "" then - local forced = specification.forced or "" - if forced ~= "" then - fullname = specification.name .. "." .. forced - else - fullname = specification.name - end - end - local fullname = resolvers.findfile(fullname) or "" - if fullname ~= "" then - local loader = loadfile(fullname) - loader = loader and loader() - return loader and loader(specification) - end -end |