diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-08-07 23:39:13 -0700 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-08-07 23:39:13 -0700 |
commit | 339587c3f627b206ef15e7207f63d88df73217ef (patch) | |
tree | 2694f1334b4dab9f7339af7034362f9ff00a7f30 /luaotfload-database.lua | |
parent | 276d4f282bc6b9899fb026a0b96c2eb1f9219e35 (diff) | |
parent | fa1ab32edd6c4ef7f7fe60cb6752b5cc9908b6a5 (diff) | |
download | luaotfload-339587c3f627b206ef15e7207f63d88df73217ef.tar.gz |
Merge pull request #121 from phi-gamma/master
[db] include DFONT fonts in database (thanks, Kim!)
Diffstat (limited to 'luaotfload-database.lua')
-rw-r--r-- | luaotfload-database.lua | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua index 11cc97d..49e9bcb 100644 --- a/luaotfload-database.lua +++ b/luaotfload-database.lua @@ -1315,9 +1315,10 @@ t1_fullinfo = function (filename, _subfont, texmf, basename) end local loaders = { - otf = ot_fullinfo, - ttc = ot_fullinfo, - ttf = ot_fullinfo, + dfont = ot_fullinfo, + otf = ot_fullinfo, + ttc = ot_fullinfo, + ttf = ot_fullinfo, afm = function (filename, _, texmf, basename) --- TODO |