*** sunstuff.c Tue Mar 29 08:06:23 1988 --- sunstuff.c.old Tue Mar 29 08:02:13 1988 *************** *** 16,23 **** * -> V2.2, 27 Nov 87 -- fixed bug where .dvi file was opened twice, * once from FrameDoneProc() and once by the WIN_REPAINT * case in CanvasEventProc(). This ran us out of fds. - * -> V2.3, 29 Mar 88 -- fixed sloppy code in skip_specials() in pkstuff.c - * that caused specials to be missed and treated as chars. */ /* include the various global #defines */ --- 16,21 ---- *** pkstuff.c Tue Mar 29 08:05:07 1988 --- pkstuff.c.old Tue Mar 29 08:02:03 1988 *************** *** 5,15 **** * See the pktopx documentation for details. */ - /* - * For V2.3, 29 Mar 88 - * Fixed stupid errors in skip_specials() that caused specials to be missed - */ - #include "defs.h" #include #include /* for access() stuff */ --- 5,10 ---- *************** *** 190,200 **** case PK_XXX4: i = get_pk_byte(); case PK_XXX3: ! i = (i<<8) + get_pk_byte(); case PK_XXX2: ! i = (i<<8) + get_pk_byte(); case PK_XXX1: ! i = (i<<8) + get_pk_byte(); while (i--) (void)get_pk_byte(); break; --- 185,195 ---- case PK_XXX4: i = get_pk_byte(); case PK_XXX3: ! i = i<<8 + get_pk_byte(); case PK_XXX2: ! i = i<<8 + get_pk_byte(); case PK_XXX1: ! i = i<<8 + get_pk_byte(); while (i--) (void)get_pk_byte(); break; *************** *** 215,221 **** flag_byte); return; } ! } while (flag_byte >= PK_XXX1); } --- 210,216 ---- flag_byte); return; } ! } while (flag_byte > PK_XXX1); } *** textool.l Tue Mar 29 09:24:36 1988 --- textool.l.old Tue Mar 29 09:24:09 1988 *************** *** 187,193 **** The following things are taken from the environment: .TP .B PKPATH ! A colon separated list of directories to search for the font PK files in place of the default described below. .TP .B HOME --- 187,193 ---- The following things are taken from the environment: .TP .B PKPATH ! A comma separated list of directories to search for the font PK files in place of the default described below. .TP .B HOME End of diffs.