Mail Archives: djgpp-workers/1997/05/14/15:11:05
Hallo Robert:
I succesfully made rhide 1.2b now.
I'm slowly applying the differences to the v0.3.2 editor, that's because
I'm checking the code and because there are changes in a TVision that affects
some modules so first I'm forced to correct that, here are a little thing:
@@ -2065,7 +2067,7 @@
{
char *s=bufEdit;
- for (;*s!=0xD && s!=inEditPtr && isspace(*s); s++);
+ for (;*s!='\r' && *s!='\n' && s!=inEditPtr && isspace(*s); s++);
= for (;*s && s!=inEditPtr && isspace(*s); s++);
return s==inEditPtr;
}
char *s=curLinePtr;
The check isn't needed is just a "sanity check" but the right test is the
one with '='.
SET
------------------------------------ 0 --------------------------------
Visit my home page: http://www.geocities.com/SiliconValley/Vista/6552/
Salvador Eduardo Tropea (SET). (Electronics Engineer)
Address: Curapaligue 2124, Caseros, 3 de Febrero
Buenos Aires, (1678), ARGENTINA
TE: +(541) 759 0013
- Raw text -