diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-10 02:11:57 -0700 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-10 02:11:57 -0700 |
commit | fb67cecbfa8707ece8d26f256b104616dc5810ee (patch) | |
tree | 4f4d0dad3f282cc543527cd4520261bfca73045c /luaotfload-features.lua | |
parent | 2aeccd26f3cb654930ac4f310881c62ba2d796b4 (diff) | |
parent | 16fbe9db46002faa0b9e54214e42992cc3fdd7ba (diff) | |
download | luaotfload-fb67cecbfa8707ece8d26f256b104616dc5810ee.tar.gz |
Merge pull request #56 from phi-gamma/master
make node mode work again
Diffstat (limited to 'luaotfload-features.lua')
-rw-r--r-- | luaotfload-features.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/luaotfload-features.lua b/luaotfload-features.lua index 5e8216c..8852596 100644 --- a/luaotfload-features.lua +++ b/luaotfload-features.lua @@ -213,7 +213,7 @@ local toboolean = function (s) if s == "false" then return false end --if s == "yes" then return true end --- Context style --if s == "no" then return false end - return s + return stringlower(s) end --- dirty test if a file: request is actually a path: lookup; don’t @@ -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 |