From 67ad1263d0328fc74928a9a1d06ea9aa0ee9a116 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Thu, 26 May 2016 13:40:58 +0200 Subject: [db] ditch fontforge compatibility code MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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. --- src/luaotfload-configuration.lua | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) (limited to 'src/luaotfload-configuration.lua') 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 -- cgit v1.2.3 From 8218c0b56e7e175a3ed931300766950491d9e719 Mon Sep 17 00:00:00 2001 From: Philipp Gesang Date: Tue, 7 Jun 2016 07:51:42 +0200 Subject: [conf] fix malformed file This was introduced with commit 67ad1263d032 during a code removal frenzy. Many thanks to @grizzilus for pointing that one out: https://github.com/phi-gamma/luaotfload/commit/67ad1263d0328fc74928a9a1d06ea9aa0ee9a116#commitcomment-17726875 --- src/luaotfload-configuration.lua | 1 - 1 file changed, 1 deletion(-) (limited to 'src/luaotfload-configuration.lua') diff --git a/src/luaotfload-configuration.lua b/src/luaotfload-configuration.lua index 3ac5c1e..c707b63 100644 --- a/src/luaotfload-configuration.lua +++ b/src/luaotfload-configuration.lua @@ -389,7 +389,6 @@ local set_fontforge = function () if use_ff == true then logreport ("both", 0, "db", "Fontforge loader was requested but not supported anymore.") - end end return true end -- cgit v1.2.3