Re: [fpc-devel]faster parser

2004-04-16 Thread Peter Vreman
At 15:51 16-4-2004, you wrote: Peter Vreman schrieb: Which compiler version did you look at? the one used for Lazarus on Linux. Lazarus can be compiled with both 1.0.x and 1.9.x. .., otherwise there is a huge risk that code won't be accepted. that will then be your choice. Why didn't you answe

Re: [fpc-devel]faster parser

2004-04-16 Thread Martin Waldenburg
Peter Vreman schrieb: Which compiler version did you look at? the one used for Lazarus on Linux. .., otherwise there is a huge risk that code won't be accepted. that will then be your choice. Martin ___ fpc-devel maillist - [EMAIL PROTECTED] h

Re: [fpc-devel]faster parser

2004-04-16 Thread Martin Waldenburg
Michael Van Canneyt wrote: > I think Martin means the parser/scanner in the FCL, not the compiler > parser/scanner. The one in the FCL can use some speed updates and > improvements. I mean the parser/scanner in the compiler directory. Martin ___ fpc-d

Re: [fpc-devel]decal

2004-04-16 Thread Dean Zobec
Alle 20:30, martedì 13 aprile 2004, Marco van de Voort ha scritto: > I ported the Delphi library "Decal" (used to be called SDL, by Soletta) to > FPC 1.9.[2? 3!]+. Thank you for the porting, it was one of the most needed libraries in fpc IMHO (I consider the cntnrs unit in Delphi a simple joke in

Re: [fpc-devel]string constant violation

2004-04-16 Thread Jonas Maebe
On 16 apr 2004, at 09:06, Ozerski Pavel wrote: This sample makes permanent changes in a string constant. If this sample will be compiled in Delphi it restores previous constant value (and all calls of the function Func return the same result; Delphi 6) or crashs with RTE 216 (Delphi 3). The Del

[fpc-devel]string constant violation

2004-04-16 Thread Ozerski Pavel
Hello all, I got from a Russian FPC forum a sample that demonstrates a strang behavior. That is this sample: {$ifdef fpc} {$mode delphi} {$endif} {$apptype console} function Func(const S : string):string; begin Result := S; pchar(Result)^ := succ(pchar(result)^); end; var I : integer; begin f