summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/luaotfload/luaotfload-tool.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua b/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua
index 6994bfc7551..eabd8e44349 100755
--- a/Master/texmf-dist/scripts/luaotfload/luaotfload-tool.lua
+++ b/Master/texmf-dist/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]