home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Garbo
/
Garbo.cdr
/
mac
/
source
/
pfb2ps
/
unfont.patch
< prev
Wrap
Text File
|
1991-04-10
|
632b
|
24 lines
*** unfont.c- Thu Jan 12 11:34:25 1989
--- unfont.c Fri Apr 27 06:55:48 1990
***************
*** 174,181 ****
count = getcount();
if (verbose)
fprintf(stderr, "case1 count is %ld\n", count);
! for (i=0; i<count; i++)
! putchar(mygetc());
break;
case 2:
/* get count, convert count bytes to hex, output */
--- 174,183 ----
count = getcount();
if (verbose)
fprintf(stderr, "case1 count is %ld\n", count);
! for (i=0; i<count; i++) {
! c = mygetc();
! putchar(c == '\r' ? '\n' : c);
! }
break;
case 2:
/* get count, convert count bytes to hex, output */