home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / source / pfb2ps / unfont.patch < prev   
Text File  |  1991-04-10  |  632b  |  24 lines

  1. *** unfont.c-    Thu Jan 12 11:34:25 1989
  2. --- unfont.c    Fri Apr 27 06:55:48 1990
  3. ***************
  4. *** 174,181 ****
  5.           count = getcount();
  6.           if (verbose)
  7.               fprintf(stderr, "case1 count is %ld\n", count);
  8. !         for (i=0; i<count; i++)
  9. !                 putchar(mygetc());
  10.           break;
  11.       case 2:        
  12.           /* get count, convert count bytes to hex, output    */
  13. --- 174,183 ----
  14.           count = getcount();
  15.           if (verbose)
  16.               fprintf(stderr, "case1 count is %ld\n", count);
  17. !         for (i=0; i<count; i++) {
  18. !             c = mygetc();
  19. !                 putchar(c == '\r' ? '\n' : c);
  20. !         }
  21.           break;
  22.       case 2:        
  23.           /* get count, convert count bytes to hex, output    */
  24.