Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Posting-Version: version B 2.10.2 9/18/84; site uw-beaver Path: utzoo!watmath!clyde!burl!ulysses!mhuxr!mhuxt!houxm!mtuxo!mtunh!mtung!mtunf!ariel!vax135!cornell!uw-beaver!laser-lovers From: laser-lovers@uw-beaver Newsgroups: fa.laser-lovers Subject: dvi2ps - 2 bug fixes Message-ID: <1418@uw-beaver> Date: Sun, 21-Jul-85 20:05:25 EDT Article-I.D.: uw-beave.1418 Posted: Sun Jul 21 20:05:25 1985 Date-Received: Wed, 24-Jul-85 23:48:40 EDT Sender: daemon@uw-beaver Organization: U of Washington Computer Science Lines: 22 From: Neal Holtz These are starting to get rediscovered, so I guess I had better inform the list: 1. deals with deficient operating systems that impose a small limit on the number of concurrently open files (e.g. 4.2BSD). The font cache size must be reduced. This does NOT reduce the number of fonts usable -- it just causes the PXL files to be closed and reopened more often. Apparently that number should be even lower for SUN's with windows, but I don't know anything about that. 2. deals with a bug in an error message handling \special files. Diffs: 100c100 < #define MAXOPEN 50 /* limit on number of open PXL files */ --- > #define MAXOPEN 15 /* limit on number of open PXL files */ 820c820 < fprintf(stderr,"Unable to open special file %d\n", str ); --- > fprintf(stderr,"Unable to open special file %s\n", str );