diff options
Diffstat (limited to 'luaotfload-database.lua')
-rw-r--r-- | luaotfload-database.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua index 0b12006..d258a19 100644 --- a/luaotfload-database.lua +++ b/luaotfload-database.lua @@ -1319,8 +1319,9 @@ find_closest = function (name, limit) local dist = distances[i] local namelst = by_distance[dist] report(false, 0, "query", - "Distance from \"%s\": %s\n ", - name, dist, tableconcat (namelst, "\n ")) + "Distance from \"%s\": %s\n " + .. tableconcat (namelst, "\n "), + name, dist) end return true |