diff options
author | Karl Berry <karl@freefriends.org> | 2017-05-07 21:21:52 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2017-05-07 21:21:52 +0000 |
commit | 9d415badea95d5684da2dcd2ebbaffed8406f3c6 (patch) | |
tree | 2ce55e5f3ebee37d96ee63cb97b1c5f358aca7e5 /Master/texmf-dist/tex/context/base/mkiv/font-otr.lua | |
parent | 330c975d98e85794aea5a07151b3456c86d37f76 (diff) |
context (May 7 00:36)
git-svn-id: svn://tug.org/texlive/trunk@44236 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/context/base/mkiv/font-otr.lua')
-rw-r--r-- | Master/texmf-dist/tex/context/base/mkiv/font-otr.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/texmf-dist/tex/context/base/mkiv/font-otr.lua b/Master/texmf-dist/tex/context/base/mkiv/font-otr.lua index 4c29d05f6e7..977be70a6a5 100644 --- a/Master/texmf-dist/tex/context/base/mkiv/font-otr.lua +++ b/Master/texmf-dist/tex/context/base/mkiv/font-otr.lua @@ -2039,7 +2039,7 @@ local function readtable(tag,f,fontdata,specification,...) end end -local variablefonts_supported = context and true or false +local variablefonts_supported = (context and true) or (logs and logs.application and true) or false local function readdata(f,offset,specification) @@ -2100,6 +2100,8 @@ local function readdata(f,offset,specification) else report("user instance: %s, bad factors",instance) end + else + report("unknown instance") end end |