diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2016-04-17 13:12:09 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2016-04-17 13:12:09 +0200 |
commit | c452fefcdf8316b946ed64c9849342cc012b7394 (patch) | |
tree | f6bfc508e044c044eafdb04acc7bed97bd38a5da | |
parent | 97ec9e582e5be33001c136a9c69b5eebee4fdb2a (diff) | |
download | luaotfload-c452fefcdf8316b946ed64c9849342cc012b7394.tar.gz |
[features] fix buggy state check
-rw-r--r-- | src/luaotfload-features.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/luaotfload-features.lua b/src/luaotfload-features.lua index 250fbc8..2148019 100644 --- a/src/luaotfload-features.lua +++ b/src/luaotfload-features.lua @@ -36,12 +36,11 @@ local config = config or { luaotfload = { run = { } } } local as_script = true local normalize = function () end -if config.luaotfload.run.live == true then +if config.luaotfload.run.live ~= false then normalize = handlers.otf.features.normalize as_script = false end - --HH A bit of tuning for definitions. if fonts.constructors then |