Re: [fpc-pascal] Need help to fix a bug

2010-01-24 Thread Joost van der Sluis
On Wed, 2010-01-13 at 16:13 +0100, JoshyFun wrote: I wish to fix this bug http://bugs.freepascal.org/view.php?id=15460 but I had found serious problems to understand how data is structured in the TBufIndex and descendant classes, specially the TDoubleLinkedBufIndex. Oohh... nice... Someone to

Re: [fpc-pascal] Generics problem/question

2010-01-24 Thread Aleksa Todorovic
On Tue, Jan 19, 2010 at 18:35, Aleksa Todorovic alexi...@gmail.com wrote: On Mon, Jan 18, 2010 at 04:07, Aleksa Todorovic alexi...@gmail.com wrote: One (not very nice) way to have generic list of records is using macros. I've extracted definition of TFPGList, made it ordinary type, and did

Re[2]: [fpc-pascal] Need help to fix a bug

2010-01-24 Thread JoshyFun
Hello FPC-Pascal, Sunday, January 24, 2010, 6:18:22 PM, you wrote: JvdS On Wed, 2010-01-13 at 16:13 +0100, JoshyFun wrote: I wish to fix this bug http://bugs.freepascal.org/view.php?id=15460 but I had found serious problems to understand how data is structured in the TBufIndex and descendant

[fpc-pascal] 2.4.0: Some lines are not compiled (just thrown away)

2010-01-24 Thread Gerhard Scholz
Some lines are ignored. An IF-clause is ignored. Versin 2.2.4 runs o.k. The program: program rangtest ; type trange = 0..2030 ; ytrange = 1990..2030 ; CONST lrange = low ( trange ) ; hrange = high ( trange ) ; ylrange = low ( ytrange ) ; yhrange = high ( ytrange