summaryrefslogtreecommitdiff
path: root/otfl-luat-dum.lua
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2010-02-22 14:26:34 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2010-02-23 01:44:03 +0200
commite064aa2dc70fb819cfdb6b3c0bdf1d081859584f (patch)
treeb429356162be25b812b6e75e85cccae61f893ad4 /otfl-luat-dum.lua
parente0931232fb05665da0e809cb3d7be0d3d6c8e820 (diff)
downloadluaotfload-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.lua5
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