@@ -495,20 +495,20 @@ void sfnts_pputBYTE(TTStreamWriter& stream, BYTE n)
495
495
496
496
if (!in_string)
497
497
{
498
- stream.putchar (' <' );
498
+ stream.put_char (' <' );
499
499
string_len=0 ;
500
500
line_len++;
501
501
in_string=TRUE ;
502
502
}
503
503
504
- stream.putchar ( hexdigits[ n / 16 ] );
505
- stream.putchar ( hexdigits[ n % 16 ] );
504
+ stream.put_char ( hexdigits[ n / 16 ] );
505
+ stream.put_char ( hexdigits[ n % 16 ] );
506
506
string_len++;
507
507
line_len+=2 ;
508
508
509
509
if (line_len > 70 )
510
510
{
511
- stream.putchar (' \n ' );
511
+ stream.put_char (' \n ' );
512
512
line_len=0 ;
513
513
}
514
514
@@ -561,7 +561,7 @@ void sfnts_end_string(TTStreamWriter& stream)
561
561
#endif
562
562
563
563
sfnts_pputBYTE (stream, 0 ); /* extra byte for pre-2013 compatibility */
564
- stream.putchar (' >' );
564
+ stream.put_char (' >' );
565
565
line_len++;
566
566
}
567
567
in_string=FALSE ;
@@ -968,7 +968,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
968
968
/* a BuildGlyph and BuildChar proceedures. */
969
969
if ( font->target_type == PS_TYPE_3 )
970
970
{
971
- stream.putchar (' \n ' );
971
+ stream.put_char (' \n ' );
972
972
973
973
stream.putline (" /BuildGlyph" );
974
974
stream.putline (" {exch begin" ); /* start font dictionary */
@@ -977,7 +977,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
977
977
stream.putline (" true 3 1 roll get exec" );
978
978
stream.putline (" end}_d" );
979
979
980
- stream.putchar (' \n ' );
980
+ stream.put_char (' \n ' );
981
981
982
982
/* This proceedure is for compatiblity with */
983
983
/* level 1 interpreters. */
@@ -986,7 +986,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
986
986
stream.putline (" 1 index /BuildGlyph get exec" );
987
987
stream.putline (" }_d" );
988
988
989
- stream.putchar (' \n ' );
989
+ stream.put_char (' \n ' );
990
990
}
991
991
992
992
/* If we are generating a type 42 font, we need to check to see */
@@ -998,7 +998,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
998
998
/* setup instructions and part of BuildGlyph came from. */
999
999
else if ( font->target_type == PS_TYPE_42 )
1000
1000
{
1001
- stream.putchar (' \n ' );
1001
+ stream.put_char (' \n ' );
1002
1002
1003
1003
/* If we have no "resourcestatus" command, or FontType 42 */
1004
1004
/* is unknown, leave "true" on the stack. */
@@ -1079,7 +1079,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
1079
1079
/* if the printer has no built-in TrueType */
1080
1080
/* rasterizer. */
1081
1081
stream.putline (" }if" );
1082
- stream.putchar (' \n ' );
1082
+ stream.put_char (' \n ' );
1083
1083
} /* end of if Type 42 not understood. */
1084
1084
1085
1085
stream.putline (" FontName currentdict end definefont pop" );
0 commit comments