summaryrefslogtreecommitdiff
path: root/psdata.c
diff options
context:
space:
mode:
authorBen Harris <bjh21@bjh21.me.uk>2007-01-27 20:47:41 +0000
committerBen Harris <bjh21@bjh21.me.uk>2007-01-27 20:47:41 +0000
commit72d22e8a1a1b47635e1b8da49ae703bde01228f2 (patch)
tree64b4c37716491d55c10c4287c473e6d6715da7dd /psdata.c
parent2641476245d6cb1e9e85d37c6c539741aff2800d (diff)
downloadhalibut-72d22e8a1a1b47635e1b8da49ae703bde01228f2.zip
halibut-72d22e8a1a1b47635e1b8da49ae703bde01228f2.tar.gz
halibut-72d22e8a1a1b47635e1b8da49ae703bde01228f2.tar.bz2
halibut-72d22e8a1a1b47635e1b8da49ae703bde01228f2.tar.xz
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]
Diffstat (limited to 'psdata.c')
-rw-r--r--psdata.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/psdata.c b/psdata.c
index af46099..4412055 100644
--- a/psdata.c
+++ b/psdata.c
@@ -4473,7 +4473,7 @@ void init_std_fonts(void) {
if (done) return;
for (i = 0; i < (int)lenof(ps_std_fonts); i++) {
font_info *fi = snew(font_info);
- fi->fp = NULL;
+ fi->fontfile = NULL;
fi->name = ps_std_fonts[i].name;
fi->widths = newtree234(width_cmp);
for (j = 0; j < (int)lenof(fi->bmp); j++)