Re: [fpc-devel] make cycle fails

2004-11-16 Thread Vincent Snijders
Peter Vreman wrote: Hi, I suspect Peter has found already but make cycle fails on win32, but nevertheless. I got the error also 1 minute ago, but didn't look at it yet. Your patch is a workaround and not a real fix. I'll have a look at it today. Ok, maybe I broke the compiler and got this bug:

[fpc-devel]bug 3272

2004-11-16 Thread Kris Herlaar
You cannot use to when iterating downwards in pascal, but should be using DownTo like so: program bug3272; var i: integer; begin for i:= -1 downto -2 do writeln (i); writeln; for i:= 1 downto 0 do writeln (i); end. Yes, i know this is kinda old and probably solved 100 times before,