Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Graeme Geldenhuys
On Wed, Mar 11, 2009 at 6:11 PM, Martin Schreiber fp...@bluewin.ch wrote: Delphi/Kylix probably can't map a variable to the address of another variable, because of that Delphi needs separate implementations of format functions with and without FormatSettings parameter. To be honest that is not

Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Graeme Geldenhuys
On Thu, Mar 12, 2009 at 10:22 AM, Vincent Snijders vsnijd...@vodafonevast.nl wrote: I guess the fpc developers traded debuggability for maintainability, so you could have a better fpc (more features or less bugs). That is what it concerns to you as developer. Maybe you disagree with that trade

Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Daniƫl Mantione
Op Thu, 12 Mar 2009, schreef Vincent Snijders: Graeme Geldenhuys schreef: On Wed, Mar 11, 2009 at 6:11 PM, Martin Schreiber fp...@bluewin.ch wrote: Delphi/Kylix probably can't map a variable to the address of another variable, because of that Delphi needs separate implementations of format

Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Jonas Maebe
Vincent Snijders wrote on do, 12 mrt 2009: I guess the fpc developers traded debuggability for maintainability, so you could have a better fpc (more features or less bugs). That is what it concerns to you as developer. Maybe you disagree with that trade off. No, it's simply an unimplemented

Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Vincent Snijders
Jonas Maebe schreef: Vincent Snijders wrote on do, 12 mrt 2009: I guess the fpc developers traded debuggability for maintainability, so you could have a better fpc (more features or less bugs). That is what it concerns to you as developer. Maybe you disagree with that trade off. No, it's

Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Michael Van Canneyt
On Thu, 12 Mar 2009, Vincent Snijders wrote: Jonas Maebe schreef: Vincent Snijders wrote on do, 12 mrt 2009: I guess the fpc developers traded debuggability for maintainability, so you could have a better fpc (more features or less bugs). That is what it concerns to you as

Re: [fpc-devel] Re: Debugger for FPC

2009-03-12 Thread Graeme Geldenhuys
On Thu, Mar 12, 2009 at 10:53 AM, Jonas Maebe jonas.ma...@elis.ugent.be wrote: I've also never seen a bug report about this fact. And although I realise that it may not be obvious that some variable is not visible due to the fact that it's an absolute variable, simply a bug report about

Re: [fpc-devel] Read from memory stream with position before start of file

2009-03-12 Thread C Western
Paul Ishenin wrote: Michael Van Canneyt wrote: And writing ? Silently do nothing: procedure TForm4.Button1Click(Sender: TObject); var S: TMemoryStream; B: Byte; Count: Integer; begin S := TMemoryStream.Create; S.Position := -1; B := 1; S.Write(B, SizeOf(B));