>From the StringToPPChar() function in fpc/rtl/unix/linux.pp Considers "backspace" as a delimiter, shouldn't that be "tab" ?
[PATCH] --- linux.pp Mon Mar 10 22:11:02 2003 +++ linux.rev Mon Mar 10 22:14:32 2003 @@ -2265,10 +2265,10 @@ nr:=0; while(buf^<>#0) do begin - while (buf^ in [' ',#8,#10]) do + while (buf^ in [' ',#9,#10]) do inc(buf); inc(nr); - while not (buf^ in [' ',#0,#8,#10]) do + while not (buf^ in [' ',#0,#9,#10]) do inc(buf); end; getmem(p,nr*4+1); @@ -2281,7 +2281,7 @@ buf:=s; while (buf^<>#0) do begin - while (buf^ in [' ',#8,#10]) do + while (buf^ in [' ',#9,#10]) do begin buf^:=#0; inc(buf); @@ -2289,7 +2289,7 @@ p^:=buf; inc(p); p^:=nil; - while not (buf^ in [' ',#0,#8,#10]) do + while not (buf^ in [' ',#0,#9,#10]) do inc(buf); end; end; [/PATCH] ( From CVS of 2003.03.10 ) - Jeff __________________________________________________ Do you Yahoo!? Yahoo! Web Hosting - establish your business online http://webhosting.yahoo.com _______________________________________________ fpc-devel maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-devel