@@ -482,20 +482,20 @@ void sfnts_pputBYTE(TTStreamWriter& stream, BYTE n)
482
482
483
483
if (!in_string)
484
484
{
485
- stream.putchar (' <' );
485
+ stream.put_char (' <' );
486
486
string_len=0 ;
487
487
line_len++;
488
488
in_string=TRUE ;
489
489
}
490
490
491
- stream.putchar ( hexdigits[ n / 16 ] );
492
- stream.putchar ( hexdigits[ n % 16 ] );
491
+ stream.put_char ( hexdigits[ n / 16 ] );
492
+ stream.put_char ( hexdigits[ n % 16 ] );
493
493
string_len++;
494
494
line_len+=2 ;
495
495
496
496
if (line_len > 70 )
497
497
{
498
- stream.putchar (' \n ' );
498
+ stream.put_char (' \n ' );
499
499
line_len=0 ;
500
500
}
501
501
@@ -548,7 +548,7 @@ void sfnts_end_string(TTStreamWriter& stream)
548
548
#endif
549
549
550
550
sfnts_pputBYTE (stream, 0 ); /* extra byte for pre-2013 compatibility */
551
- stream.putchar (' >' );
551
+ stream.put_char (' >' );
552
552
line_len++;
553
553
}
554
554
in_string=FALSE ;
@@ -955,7 +955,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
955
955
/* a BuildGlyph and BuildChar proceedures. */
956
956
if ( font->target_type == PS_TYPE_3 )
957
957
{
958
- stream.putchar (' \n ' );
958
+ stream.put_char (' \n ' );
959
959
960
960
stream.putline (" /BuildGlyph" );
961
961
stream.putline (" {exch begin" ); /* start font dictionary */
@@ -964,7 +964,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
964
964
stream.putline (" true 3 1 roll get exec" );
965
965
stream.putline (" end}_d" );
966
966
967
- stream.putchar (' \n ' );
967
+ stream.put_char (' \n ' );
968
968
969
969
/* This proceedure is for compatiblity with */
970
970
/* level 1 interpreters. */
@@ -973,7 +973,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
973
973
stream.putline (" 1 index /BuildGlyph get exec" );
974
974
stream.putline (" }_d" );
975
975
976
- stream.putchar (' \n ' );
976
+ stream.put_char (' \n ' );
977
977
}
978
978
979
979
/* If we are generating a type 42 font, we need to check to see */
@@ -985,7 +985,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
985
985
/* setup instructions and part of BuildGlyph came from. */
986
986
else if ( font->target_type == PS_TYPE_42 )
987
987
{
988
- stream.putchar (' \n ' );
988
+ stream.put_char (' \n ' );
989
989
990
990
/* If we have no "resourcestatus" command, or FontType 42 */
991
991
/* is unknown, leave "true" on the stack. */
@@ -1066,7 +1066,7 @@ void ttfont_trailer(TTStreamWriter& stream, struct TTFONT *font)
1066
1066
/* if the printer has no built-in TrueType */
1067
1067
/* rasterizer. */
1068
1068
stream.putline (" }if" );
1069
- stream.putchar (' \n ' );
1069
+ stream.put_char (' \n ' );
1070
1070
} /* end of if Type 42 not understood. */
1071
1071
1072
1072
stream.putline (" FontName currentdict end definefont pop" );
0 commit comments