----- Original Message -----
From: "Raymond Toy" <toy(a)rtp.ericsson.se>
To: "Ben Wing" <ben(a)666.com>
Cc: "XEmacs Developers" <xemacs-beta(a)xemacs.org>
Sent: Wednesday, May 22, 2002 1:31 PM
Subject: Re: Repeatable crash on Solaris, with recipe
>>>>> "Ben" == Ben Wing <ben(a)666.com>
writes:
Ben> yes, i can repeat this too.
Ben> patch soon.
Ben> notice anything about this line?
Ben> #define MAX_STRING_ASCII_BEGIN ((2 << 21) - 1)
Not really. If you can and need a guinea pig, please send me a copy
of the patch that fixes this. I hate having xemacs crash on me all
the time. :-(
answer: the above is supposed to be 2^21 - 1.
Change to
#define MAX_STRING_ASCII_BEGIN ((1 << 21) - 1)
and you should be fixed, although you might then hit an alloca() crash [I did].
patch forthcoming for both problems.
Ray