summaryrefslogtreecommitdiff
path: root/src/luaotfload-configuration.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2016-10-17 07:44:43 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2016-10-17 07:44:46 +0200
commit394dea756716ecea5b764dffc8b10c2de0c3a15c (patch)
tree1094e2df5cbe986ee1e1bb64087edcfbee96d176 /src/luaotfload-configuration.lua
parent00da11e24338e88d62eab90b1340dec46fe0b791 (diff)
downloadluaotfload-394dea756716ecea5b764dffc8b10c2de0c3a15c.tar.gz
[db,conf,doc] kill off references to FF loader
The config option must go since the FF based code was removed already some time ago.
Diffstat (limited to 'src/luaotfload-configuration.lua')
-rw-r--r--src/luaotfload-configuration.lua19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/luaotfload-configuration.lua b/src/luaotfload-configuration.lua
index c707b63..8484c62 100644
--- a/src/luaotfload-configuration.lua
+++ b/src/luaotfload-configuration.lua
@@ -203,7 +203,6 @@ local default_config = {
update_live = true,
compress = true,
max_fonts = 2^51,
- use_fontforge = false,
},
run = {
anon_sequence = default_anon_sequence,
@@ -378,21 +377,6 @@ local set_default_features = function ()
return true
end
-local set_fontforge = function ()
- local names = fonts.names
- if not names or not names.use_fontforge then
- --- happens normally on the first run
- logreport ("log", 4, "db", "Database not present.")
- return true
- end
- local use_ff = config.luaotfload.db.use_fontforge
- if use_ff == true then
- logreport ("both", 0, "db",
- "Fontforge loader was requested but not supported anymore.")
- end
- return true
-end
-
reconf_tasks = {
{ "Set the log level" , set_loglevel },
{ "Build cache paths" , build_cache_paths },
@@ -400,7 +384,6 @@ reconf_tasks = {
{ "Set the font filter" , set_font_filter },
{ "Install font name resolver", set_name_resolver },
{ "Set default features" , set_default_features },
- { "Set fontforge" , set_fontforge },
}
-------------------------------------------------------------------------------
@@ -499,7 +482,6 @@ local option_spec = {
out_t = number_t, --- TODO int_t from 5.3.x on
transform = tointeger,
},
- use_fontforge = { in_t = boolean_t, },
},
run = {
anon_sequence = {
@@ -723,7 +705,6 @@ local formatters = {
skip_read = { false, format_boolean },
strip = { false, format_boolean },
update_live = { false, format_boolean },
- use_fontforge = { false, format_boolean },
},
default_features = {
__default = { true, format_keyval },