summaryrefslogtreecommitdiff
path: root/src/luaotfload-configuration.lua
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2016-05-26 13:40:58 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2016-05-26 13:52:17 +0200
commit67ad1263d0328fc74928a9a1d06ea9aa0ee9a116 (patch)
tree91e2c833f51c2b9a2e88cba8e9b858baca643b15 /src/luaotfload-configuration.lua
parente62c662512440af0ebc4ce1f4fe81a51fc4888a3 (diff)
downloadluaotfload-67ad1263d0328fc74928a9a1d06ea9aa0ee9a116.tar.gz
[db] ditch fontforge compatibility code
Remove all the FF stuff and the config option. The transition is complete, no need to keep these things around any longer. Since we won’t be going back to the FF loader we might as well dispose of the junk identifiers and the translation layer as well.
Diffstat (limited to 'src/luaotfload-configuration.lua')
-rw-r--r--src/luaotfload-configuration.lua10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/luaotfload-configuration.lua b/src/luaotfload-configuration.lua
index 8cdebe0..3ac5c1e 100644
--- a/src/luaotfload-configuration.lua
+++ b/src/luaotfload-configuration.lua
@@ -387,17 +387,9 @@ local set_fontforge = function ()
end
local use_ff = config.luaotfload.db.use_fontforge
if use_ff == true then
- if not _G.fontloader then
logreport ("both", 0, "db",
- "Fontforge loader was requested but the fontloader \z
- library is missing.")
- return false
+ "Fontforge loader was requested but not supported anymore.")
end
- logreport ("log", 0, "db", "Loading font data with FontForge.")
- names.use_fontforge (true)
- else
- logreport ("log", 4, "db", "Loading font data with the Lua loader.")
- names.use_fontforge (false)
end
return true
end