diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-10 11:09:19 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-10 11:09:19 +0200 |
commit | 16fbe9db46002faa0b9e54214e42992cc3fdd7ba (patch) | |
tree | 4f4d0dad3f282cc543527cd4520261bfca73045c | |
parent | 631c921ce21e9240ba97b2871b79d990aacdce03 (diff) | |
download | luaotfload-16fbe9db46002faa0b9e54214e42992cc3fdd7ba.tar.gz |
don’t remove requested features before normalization
-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 82d447c..8852596 100644 --- a/luaotfload-features.lua +++ b/luaotfload-features.lua @@ -415,7 +415,7 @@ local handle_request = function (specification) local newvalue = request.features[feat] if newvalue then specification[feat] = request.features[feat] - request.features[feat] = nil + --request.features[feat] = nil end end |