diff options
author | Karl Berry <karl@freefriends.org> | 2014-08-04 00:11:40 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2014-08-04 00:11:40 +0000 |
commit | 48603b2b9cceafadb92312326be076c441160561 (patch) | |
tree | 4120b5047641a1a9f8dd3e9340a47716328d0147 /Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua | |
parent | f952e56a75da8832693dc815964d8e0d70d0cba1 (diff) |
luaotfload
git-svn-id: svn://tug.org/texlive/trunk@34825 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua')
-rw-r--r-- | Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua index 4c5522e968e..099c256dde8 100644 --- a/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua +++ b/Master/texmf-dist/tex/luatex/luaotfload/luaotfload-database.lua @@ -3091,9 +3091,9 @@ end update_names = function (currentnames, force, dry_run) local targetnames - if config.luaotfload.db.update_live == false then - report ("info", 2, "db", - "Skipping database update.") + local conf = config.luaotfload + if conf.run.live ~= false and conf.db.update_live == false then + report ("info", 2, "db", "Skipping database update.") --- skip all db updates return currentnames or name_index end |