diff options
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 |