summaryrefslogtreecommitdiff
path: root/otfl-font-pfb.lua
diff options
context:
space:
mode:
Diffstat (limited to 'otfl-font-pfb.lua')
-rw-r--r--otfl-font-pfb.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/otfl-font-pfb.lua b/otfl-font-pfb.lua
deleted file mode 100644
index 8ab6b29..0000000
--- a/otfl-font-pfb.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-local fonts = fonts
-
----
---- opentype reader (from font-otf.lua):
---- (spec : table) -> (suffix : string) -> (format : string) -> (font : table)
----
-
-local pfb_reader = function (specification)
- return readers.opentype(specification,"pfb","type1")
-end
-
-local pfa_reader = function (specification)
- return readers.opentype(specification,"pfa","type1")
-end
-
-fonts.formats.pfb = "type1"
-fonts.readers.pfb = pfb_reader
-fonts.handlers.pfb = { } --- empty, as with tfm
-
-fonts.formats.pfa = "type1"
-fonts.readers.pfa = pfa_reader
-fonts.handlers.pfa = { }
-
--- vim:tw=71:sw=2:ts=2:expandtab