[3613] in testers
/usr/athena/include/X11/bitmaps/gray
daemon@ATHENA.MIT.EDU (chad brown)
Wed Jun 17 01:58:51 1998
Date: Wed, 17 Jun 1998 01:58:40 -0400
From: chad brown <yandros@MIT.EDU>
To: testers@MIT.EDU
; cat /usr/athena/include/X11/bitmaps/gray
#define thumb_width 8
#define thumb_height 8
static char thumb_bits[] = {
0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa};
This seems wrong. it should look more like:
; cat /usr/include/X11/bitmaps/gray
#define gray_width 2
#define gray_height 2
static char gray_bits[] = {
0x01, 0x02};
the 53 sgi 8.1 /usr/athena agree with the 6.2 packs; the x11r6 agrees
with /usr/include (and with `correct' protocol).
chad