diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-24 00:19:09 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-07-24 00:19:09 +0200 |
commit | 2331b6838f623d4800e79e92c50ce55f955d7776 (patch) | |
tree | 12aed96922ab72b4889899d8b4499d5e1600362a /luaotfload-database.lua | |
parent | 9ba9fbe876feb510ca5ba91f49ca63f984924d59 (diff) | |
download | luaotfload-2331b6838f623d4800e79e92c50ce55f955d7776.tar.gz |
bump version, update NEWSv2.3b
Diffstat (limited to 'luaotfload-database.lua')
-rw-r--r-- | luaotfload-database.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua index 487498b..1b75458 100644 --- a/luaotfload-database.lua +++ b/luaotfload-database.lua @@ -1,5 +1,5 @@ if not modules then modules = { } end modules ['luaotfload-database'] = { - version = "2.3a", + version = "2.3b", comment = "companion to luaotfload.lua", author = "Khaled Hosny, Elie Roux, Philipp Gesang", copyright = "Luaotfload Development Team", @@ -2037,7 +2037,7 @@ local purge_from_cache = function (category, path, list, all) local n = 0 for i=1,#list do local filename = list[i] - if string.find(filename,"luatex%-cache") then -- safeguard + if stringfind(filename,"luatex%-cache") then -- safeguard if all then report("info", 5, "cache", "removing %s", filename) osremove(filename) |