diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-09-02 00:09:47 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-09-02 00:09:47 +0200 |
commit | 18f6b49c8c5903926e899abaf8efdada6947fbde (patch) | |
tree | 5b46c6456870b2c164748cd1f5c43fa9cbc19490 /luaotfload-database.lua | |
parent | 1674a5aa95a3305845364daee05c2ec8279e2703 (diff) | |
download | luaotfload-18f6b49c8c5903926e899abaf8efdada6947fbde.tar.gz |
[db] fix table constructor syntax
Diffstat (limited to 'luaotfload-database.lua')
-rw-r--r-- | luaotfload-database.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luaotfload-database.lua b/luaotfload-database.lua index e5627ef..323804c 100644 --- a/luaotfload-database.lua +++ b/luaotfload-database.lua @@ -2544,7 +2544,7 @@ local generate_filedata = function (mappings) inbare [barename] = index end else - inbare = { barename = index } + inbare = { [barename] = index } bare [location] [format] = inbare end |