diff options
author | Karl Berry <karl@freefriends.org> | 2017-02-11 22:19:18 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-02-11 22:19:18 +0000 |
commit | 74f95931c89af275557641ead7b61d4e19832039 (patch) | |
tree | 98932e4775263d99936da3d19fd297abc30c464a /Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua | |
parent | f16eb639b142db3f3e97f8df8907882e3120c9ea (diff) |
luaotfload (11feb17)
git-svn-id: svn://tug.org/texlive/trunk@43194 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua index 87275ef2d8e..802776c5be8 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-loaders.lua @@ -151,6 +151,11 @@ do logreport ("both", 0, "loaders", " > fontname %q", result.fontname or "<nil>") logreport ("both", 0, "loaders", " > fullname %q", result.fullname or "<nil>") logreport ("both", 0, "loaders", " > type %s", result.type or "<nil>") + local spec = result.specification + if spec then + logreport ("both", 0, "loaders", " > file %q", spec.filename or "<nil>") + logreport ("both", 0, "loaders", " > subfont %s", spec.sub or "<nil>") + end return result end end |