From 72d22e8a1a1b47635e1b8da49ae703bde01228f2 Mon Sep 17 00:00:00 2001 From: Ben Harris Date: Sat, 27 Jan 2007 20:47:41 +0000 Subject: Add support for PFB files. This seems to have caused me to completely rewrite the Type 1 font support, and I'm sure the result is more complex than it needs to be, but it seems to work correctly, so I shouldn't complain. [originally from svn r7175] --- in_afm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'in_afm.c') diff --git a/in_afm.c b/in_afm.c index d0b2088..b2aacae 100644 --- a/in_afm.c +++ b/in_afm.c @@ -56,7 +56,7 @@ void read_afm_file(input *in) { fi = snew(font_info); fi->name = NULL; fi->widths = newtree234(width_cmp); - fi->fp = NULL; + fi->fontfile = NULL; fi->kerns = newtree234(kern_cmp); fi->ligs = newtree234(lig_cmp); fi->fontbbox[0] = fi->fontbbox[1] = fi->fontbbox[2] = fi->fontbbox[3] = 0; -- cgit v1.1