diff options
author | Philipp Gesang <phg@phi-gamma.net> | 2015-06-13 00:31:58 +0200 |
---|---|---|
committer | Philipp Gesang <phg@phi-gamma.net> | 2015-06-13 00:32:04 +0200 |
commit | b271e253b40cd0af97f6d50f0461f87ad1ed5314 (patch) | |
tree | 88459ad0c6986a6648c969726081248cd5c8d74e | |
parent | 6a327a9389ab16599a19de67c0511b3b291ef880 (diff) | |
download | luaotfload-b271e253b40cd0af97f6d50f0461f87ad1ed5314.tar.gz |
[loaders] map forced OFM files to match the TFM loader
This defines a loader for the recognized OFM format. Somehow more recent
versions of Luaotfload (TL 2014) did not provide one, causing to OFM
fonts to fail loading whilst not being an issue without Luaotfload
loaded.
Addresses https://github.com/lualatex/luaotfload/issues/273
-rw-r--r-- | src/luaotfload-loaders.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/luaotfload-loaders.lua b/src/luaotfload-loaders.lua index 2aa8c7c..901d4d8 100644 --- a/src/luaotfload-loaders.lua +++ b/src/luaotfload-loaders.lua @@ -27,4 +27,8 @@ formats.pfb = "type1" readers.pfb = pfb_reader handlers.pfb = { } +formats.ofm = "type1" +readers.ofm = readers.tfm +handlers.ofm = { } + -- vim:tw=71:sw=2:ts=2:expandtab |