diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-10 03:50:35 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2013-05-10 03:50:35 +0200 |
commit | 631c921ce21e9240ba97b2871b79d990aacdce03 (patch) | |
tree | ec9200c804ce6b99a6b6330f35ce3ab68fd52db8 | |
parent | ec22f80a4df73c67f9a4bfb128ee5065261cc452 (diff) | |
download | luaotfload-631c921ce21e9240ba97b2871b79d990aacdce03.tar.gz |
lowercase feature values
-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 5e8216c..82d447c 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 |