summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Gesang <phg@phi-gamma.net>2016-07-15 08:07:09 +0200
committerPhilipp Gesang <phg@phi-gamma.net>2016-07-15 08:07:47 +0200
commitb1ca1874fc12611b98c3155fe3d197bdaf77c273 (patch)
treeda831e4f6305f78e7bc1e26a8b9eecede25d4cca
parentcb87e4417ed1380b79f35efe4b044dce40c5d3d3 (diff)
downloadluaotfload-b1ca1874fc12611b98c3155fe3d197bdaf77c273.tar.gz
[loaders] hook the generalized afm loader directly into tfm, pfb, and afm formats
Latest updates to the loaders seem to have obsoleted a number of our precautions. Neat.
-rw-r--r--src/luaotfload-loaders.lua24
1 files changed, 4 insertions, 20 deletions
diff --git a/src/luaotfload-loaders.lua b/src/luaotfload-loaders.lua
index b544cf1..d7be31e 100644
--- a/src/luaotfload-loaders.lua
+++ b/src/luaotfload-loaders.lua
@@ -49,23 +49,7 @@ local unsupported_reader = function (format)
end
end
-local afm_reader = fonts.readers.afm
-
-local afm_loader = function (specification)
- specification.forced = "afm"
- specification.sub = false
- specification.forcedname = file.addsuffix(specification.name, "afm")
---inspect(specification)
- return afm_reader (specification, "afm")
-end
-
-local afm_compat_message = function (specification)
- logreport ("both", 4, "loaders",
- "PFB format only supported with matching \z
- AFM; redirecting (“%s”, “afm”).",
- tostring (specification.name))
- return afm_loader (specification)
-end
+local type1_reader = fonts.readers.afm
local install_formats = function ()
local fonts = fonts
@@ -97,9 +81,9 @@ local install_formats = function ()
return aux ("evl", eval_reader)
and aux ("lua", lua_reader)
and aux ("pfa", unsupported_reader "pfa")
- and aux ("afm", afm_loader)
- and aux ("tfm", afm_loader)
- and aux ("pfb", afm_compat_message) --- pfb loader is incomplete
+ and aux ("afm", type1_reader)
+ and aux ("tfm", type1_reader)
+ and aux ("pfb", type1_reader)
and aux ("ofm", readers.tfm)
and aux ("dfont", unsupported_reader "dfont")
end