diff options
author | Karl Berry <karl@freefriends.org> | 2020-05-07 21:23:35 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2020-05-07 21:23:35 +0000 |
commit | 345cfaaf7a584309125385a2affbd46dc1d94078 (patch) | |
tree | 2ad12c65b2b4c3f5546556388405c3cdda3ddc43 /Build | |
parent | e0ad806b95387ba2782fc7a49de63317c7b07196 (diff) |
luaotfload (7may20)
git-svn-id: svn://tug.org/texlive/trunk@55054 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build')
-rwxr-xr-x | Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua b/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua index 6994bfc7551..eabd8e44349 100755 --- a/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua +++ b/Build/source/texk/texlive/linked_scripts/luaotfload/luaotfload-tool.lua @@ -9,8 +9,8 @@ local ProvidesLuaModule = { name = "luaotfload-tool", - version = "3.13", --TAGVERSION - date = "2020-05-01", --TAGDATE + version = "3.14", --TAGVERSION + date = "2020-05-06", --TAGDATE description = "luaotfload-tool / database functionality", license = "GPL v2.0" } @@ -1334,7 +1334,6 @@ function actions.list (job) else criterion = stringexplode(criterion, ":") --> { field, value } local asked_value = criterion[2] - local sane_asked_pattern = sane_pattern(criterion[2]) criterion = criterion[1] asked_fields = set_primary_field(asked_fields, criterion) @@ -1343,6 +1342,7 @@ function actions.list (job) --- firstly, build a list of fonts to operate on local targets = { } if asked_value then --- only those whose value matches + local sane_asked_pattern = sane_pattern(asked_value) logreport (false, 2, "list", "Restricting to value %s", asked_value) for i=1, nmappings do local entry = mappings[i] |