|
From: Sam S. <sd...@gn...> - 2007-01-04 18:17:03
|
Jack Unrue wrote: > I have to revert > > tests/streams.tst > revision 1.49 > date: 2006/12/27 23:14:23; author: sds; state: Exp; lines: +25 -0 > fixed bug [ 1483762 ]: socket's stream-external-format always :default > > back to 1.48 in order for it to pass with my MinGW build; otherwise it > fails as I described here: > > http://permalink.gmane.org/gmane.lisp.clisp.devel/16238 > > I verified that it's only the change to stream.tst that causes any > problem -- stream.d (rev 1.571) is OK here. > please test this patch --- stream.d 27 Dec 2006 18:22:33 -0500 1.571 +++ stream.d 04 Jan 2007 13:14:40 -0500 @@ -15534,7 +15534,7 @@ STACK_1 = value1; /* save output external format */ C_stream_external_format(); { object output_ex_fmt = popSTACK(); - if (eq(value1,output_ex_fmt)) /* same ex fmt for input & output */ + if (equalp(value1,output_ex_fmt)) /* same ex fmt for input & output */ return; /* return this same ex fmt */ VALUES1(S(Kdefault)); } |