diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-31 14:58:54 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-31 14:58:54 +0200 |
commit | ea43a4d7744081f511cca8281e69b5a5f14c2238 (patch) | |
tree | 99cba91c565cf0e805cd52498f12080597670727 /luaotfload-features.lua | |
parent | 9010a8546ee30db8fb7ab61c0862105ab12c8c49 (diff) | |
download | luaotfload-ea43a4d7744081f511cca8281e69b5a5f14c2238.tar.gz |
fix name fallback
Diffstat (limited to 'luaotfload-features.lua')
-rw-r--r-- | luaotfload-features.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/luaotfload-features.lua b/luaotfload-features.lua index c405ae5..a70dace 100644 --- a/luaotfload-features.lua +++ b/luaotfload-features.lua @@ -1175,7 +1175,7 @@ local handle_request = function (specification) local keep = import_values[n][2] local newvalue = request.features[feat] if newvalue then - specification[feat] = request.features[feat] + specification[feat] = request.features[feat] if not keep then request.features[feat] = nil end |