diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-02-22 14:26:34 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-02-23 01:44:03 +0200 |
commit | e064aa2dc70fb819cfdb6b3c0bdf1d081859584f (patch) | |
tree | b429356162be25b812b6e75e85cccae61f893ad4 /otfl-luat-dum.lua | |
parent | e0931232fb05665da0e809cb3d7be0d3d6c8e820 (diff) | |
download | luaotfload-e064aa2dc70fb819cfdb6b3c0bdf1d081859584f.tar.gz |
Updating to latest ConTeXt beta (2010.02.23)
Now many of our fixes are incorporated upstream or fixed in a different
way.
Diffstat (limited to 'otfl-luat-dum.lua')
-rw-r--r-- | otfl-luat-dum.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/otfl-luat-dum.lua b/otfl-luat-dum.lua index a81131d..34dd9ed 100644 --- a/otfl-luat-dum.lua +++ b/otfl-luat-dum.lua @@ -57,12 +57,13 @@ local remapper = { ttf = "truetype fonts", ttc = "truetype fonts", dfont = "truetype dictionary", - cid = "other text files", -- will become "cid files" + cid = "cid maps", + fea = "font feature files", } function resolvers.find_file(name,kind) name = string.gsub(name,"\\","\/") - kind = kind and string.lower(kind) + kind = string.lower(kind) return kpse.find_file(name,(kind and kind ~= "" and (remapper[kind] or kind)) or "tex") end |