DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: R T

⟦33fa6ce38⟧ TextFile

    Length: 757 (0x2f5)
    Types: TextFile
    Names: »README.orig«

Derivation

└─⟦b20c6495f⟧ Bits:30007238 EUUGD18: Wien-båndet, efterår 1987
    └─⟦this⟧ »EUUGD18/X/Dragon/README.orig« 

TextFile

04/19/89

Dragon is a game.  It implements a version of the ancient game of Mah-Jongg.

Dragon is known to work on a Sun 3/60 running SunOS 3.5 with X11R3 from MIT.
It compiles with the Sun compiler and with gcc version 1.31.

As of this writing, the Athena Dialog widget has a bug that can cause Dragon
to get a segmentation/memory error.  There is code in X11R3/lib/Xaw/Dialog.c
in the SetValues function that looks like this:

********
    {
	Arg args[1];
!	XtSetArg( args[1], XtNlabel, w->dialog.label );
	XtSetValues( w->dialog.labelW, args, XtNumber(args) );
    }
********
it needs to be changed to:
********
    {
	Arg args[1];
!	XtSetArg( args[0], XtNlabel, w->dialog.label );
	XtSetValues( w->dialog.labelW, args, XtNumber(args) );
    }
********