diff options
-rw-r--r-- | luaotfload-database.lua | 4 | ||||
-rw-r--r-- | luaotfload-merged.lua | 2 |
2 files changed, 2 insertions, 4 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua index 1f8f34a..7baa92a 100644 --- a/luaotfload-database.lua +++ b/luaotfload-database.lua @@ -769,9 +769,7 @@ resolve = function (_, _, specification) -- the 1st two parameters are used by C or name == fontname or name == psname then - local continue - exact, continue = add_to_match(exact, askedsize, face) - if continue == false then break end + synonymous, continue = add_to_match(synonymous, askedsize, face) elseif synonym_set[style] and (synonym_set[style][prefmodifiers] or synonym_set[style][subfamily]) diff --git a/luaotfload-merged.lua b/luaotfload-merged.lua index 81e3fec..9d708bf 100644 --- a/luaotfload-merged.lua +++ b/luaotfload-merged.lua @@ -3143,7 +3143,7 @@ function caches.savedata(path,name,data) local luaname,lucname=makefullname(path,name) if luaname then texio.write(string.format("(save: %s)",luaname)) - table.tofile(luaname,data,true,{ reduce=true }) + table.tofile(luaname,data,true,{ reduce=false }) if lucname and type(caches.compile)=="function" then os.remove(lucname) texio.write(string.format("(save: %s)",lucname)) |