From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from galapagos.cse.psu.edu ([130.203.12.17]) by hawkwind.utcs.toronto.edu with SMTP id <58491>; Wed, 12 Dec 2001 02:20:25 -0500 Received: (qmail 23179 invoked by uid 991); 11 Dec 2001 21:50:14 -0000 Message-ID: <20011211215014.23178.qmail@g.bio.cse.psu.edu> From: "Scott Schwartz" Date: Tue, 11 Dec 2001 16:50:14 -0500 To: 9fans@cse.psu.edu, sam-fans@hawkwind.utcs.toronto.edu Subject: libXg patch For those using libXg, if you want it to work with X11 unicode fonts (and there are a few these days) with more than 32K characters, don't forget to change libg.h to suit: ; diff libg.h.old libg.h 97,102c97,102 < short minrow; /* first character row in font (for X subfonts) */ < short mincol; /* first character col in font (for X subfonts) */ < short minchar; /* first char code in subfont */ < short maxchar; /* last char code in subfont */ < short width; /* number of chars in row */ < short n; /* number of chars in font */ --- > int minrow; /* first character row in font (for X subfonts) */ > int mincol; /* first character col in font (for X subfonts) */ > int minchar; /* first char code in subfont */ > int maxchar; /* last char code in subfont */ > int width; /* number of chars in row */ > int n; /* number of chars in font */