summaryrefslogtreecommitdiff
path: root/fonttools
diff options
context:
space:
mode:
authorpfaedit <pfaedit>2004-04-18 05:21:24 +0000
committerpfaedit <pfaedit>2004-04-18 05:21:24 +0000
commit4cf3ef2cbe2a2db721637ff48e8ca80edd7c57f9 (patch)
tree4a935f445d1e56b45dd75a108000cd852a0f0104 /fonttools
parent363a5eacfee35b7a9128acafcee39bb157d28c02 (diff)
Couple more places colons are needed.
Diffstat (limited to 'fonttools')
-rw-r--r--fonttools/ttf2eps.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fonttools/ttf2eps.c b/fonttools/ttf2eps.c
index 5e98c9b7..3f1f4074 100644
--- a/fonttools/ttf2eps.c
+++ b/fonttools/ttf2eps.c
@@ -787,7 +787,7 @@ static void DumpEpsHeader(FILE *eps, struct ttfinfo *info, int glyph,
fprintf( eps, "%%!PS-Adobe-3.0 EPSF-3.0\n" );
fprintf( eps, "%%%%BoundingBox: %g %g %g %g\n", xmin, ymin, xmax, ymax );
- fprintf( eps, "%%%%Pages 0\n" );
+ fprintf( eps, "%%%%Pages: 0\n" );
fprintf( eps, "%%%%Title: Glyph %d ", glyph );
if ( info->glyph_names!=NULL && info->glyph_names[glyph]!=NULL )
fprintf( eps, " Name: %s", info->glyph_names[glyph]);
@@ -807,9 +807,9 @@ static void DumpEpsHeader(FILE *eps, struct ttfinfo *info, int glyph,
if ( info->glyph_widths!=NULL )
fprintf( eps, "%%Character Width %d\n", info->glyph_widths[glyph]);
if ( info->glyph_names!=NULL && info->glyph_names[glyph]!=NULL )
- fprintf( eps, "%%%%Page \"%s\" 1\n", info->glyph_names[glyph] );
+ fprintf( eps, "%%%%Page: \"%s\" 1\n", info->glyph_names[glyph] );
else
- fprintf( eps, "%%%%Page \"Glyph%d\" 1\n", glyph );
+ fprintf( eps, "%%%%Page: \"Glyph%d\" 1\n", glyph );
}
static void DoDumpGlyph(FILE *ttf, FILE *eps, struct ttfinfo *info, int glyph,