diff options
author | Karl Berry <karl@freefriends.org> | 2019-09-18 21:58:28 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2019-09-18 21:58:28 +0000 |
commit | 9ac243d09b484e3096e35a521df4328ceba78a8e (patch) | |
tree | a734f5ad7c2adc762deb9b1e4ebfaa6e8c9fd14f /Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua | |
parent | 57d8e344d4a807272cc4f5ee6c04af89ff866756 (diff) |
luaotfload (18sep19)
git-svn-id: svn://tug.org/texlive/trunk@52120 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua index 3e3283b5ff1..d3b5c734183 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-auxiliary.lua @@ -6,8 +6,8 @@ local ProvidesLuaModule = { name = "luaotfload-auxiliary", - version = "2.991", --TAGVERSION - date = "2019-08-11", --TAGDATE + version = "3.00", --TAGVERSION + date = "2019-09-13", --TAGDATE description = "luaotfload submodule / auxiliary functions", license = "GPL v2.0" } @@ -285,7 +285,7 @@ luaotfload_callbacks [#luaotfload_callbacks + 1] = { local function set_xheight(tfmdata) local parameters = tfmdata.parameters if not parameters then return end - if not (parameters.x_height or parameters[5] or 0) == 0 then return end + if not ((parameters.x_height or parameters[5] or 0) == 0) then return end if tfmdata.characters and tfmdata.characters[120] then parameters.x_height = tfmdata.characters[120].height else |