diff options
author | Karl Berry <karl@freefriends.org> | 2014-01-04 00:19:28 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-01-04 00:19:28 +0000 |
commit | 01cb1ab0f16b41652d7c26d7079030863620cd15 (patch) | |
tree | 12d7bcc56dc71243598d86f160924408aaf34026 /Master/texmf-dist/source/luatex/luaotfload | |
parent | 70340ace6f83709cc9dac621b67502224b3baae5 (diff) |
luaotfload (3jan14)
git-svn-id: svn://tug.org/texlive/trunk@32563 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/source/luatex/luaotfload')
-rw-r--r-- | Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx b/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx index adbdf26f122..08f56af43bc 100644 --- a/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx +++ b/Master/texmf-dist/source/luatex/luaotfload/luaotfload.dtx @@ -2078,13 +2078,14 @@ request_resolvers.path = function (specification) name) file_resolver (specification) else - local suffix = filesuffix (name) - if formats[suffix] then - specification.forced = suffix - specification.name = file.removesuffix(name) - else - specification.name = name - end + local suffix = filesuffix (name) + if formats[suffix] then + specification.forced = suffix + specification.name = file.removesuffix(name) + specification.forcedname = name + else + specification.name = name + end end end |