diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-12 21:34:45 +0200 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2014-07-12 21:56:12 +0200 |
commit | 6a2df3f25e05f6a30c4789bd2c2daed999617784 (patch) | |
tree | 3e6352004bbf472e5fd8d4d9b657a6868cd98ff0 | |
parent | 2668c9eb51bda60075c4c599d62bc8e31b25941b (diff) | |
download | luaotfload-6a2df3f25e05f6a30c4789bd2c2daed999617784.tar.gz |
[conf] strip unused configuration variable
What the hell was that for?
-rw-r--r-- | src/luaotfload-configuration.lua | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/luaotfload-configuration.lua b/src/luaotfload-configuration.lua index 3522bef..69f4069 100644 --- a/src/luaotfload-configuration.lua +++ b/src/luaotfload-configuration.lua @@ -107,7 +107,6 @@ local valid_formats = tabletohash { local default_config = { db = { formats = "otf,ttf,ttc,dfont", - reload = false, scan_local = false, skip_read = false, strip = true, @@ -300,7 +299,6 @@ local option_spec = { return tableconcat (result, ",") end }, - reload = { in_t = boolean_t, }, scan_local = { in_t = boolean_t, }, skip_read = { in_t = boolean_t, }, strip = { in_t = boolean_t, }, |