| View previous topic :: View next topic |
| Author |
Message |
SD Guest
|
Posted: Thu Jun 29, 2006 8:12 am Post subject: little bug in uPSRuntime.pas |
|
|
Hi,
I'm using the ICARUS 2.5.0.0 from Peganza (freeware)
to check my ROPS IDE and it has found a bug in the
uPSRuntime code:
Syntax error (end) at uPSRuntime row 2823
Compiler: Delphi 7 in uPSRuntime
After a code analysis I've saw that problem isn't
in 2823 line but in line 2796 where there is the following
wrong line code:
if (Rec.Flags and 1) <> 0then
I've fixed to:
if (Rec.Flags and 1) <> 0 then
the bug is in the missing space between '0' and 'then'.
However thank you very much for your gem ROPS.
--
Silverio, SiD Vicenza - Italy
Yahoo Messanger: SiDorDiS |
|
| Back to top |
|
 |
SD Guest
|
Posted: Thu Jun 29, 2006 8:12 am Post subject: Re: little bug in uPSRuntime.pas |
|
|
sorry I've mistake newsgroup |
|
| Back to top |
|
 |
SD Guest
|
Posted: Fri Jun 30, 2006 8:12 am Post subject: Re: little bug in uPSRuntime.pas |
|
|
| Quote: | I know I missed a space there, but it's still valid Pascal.
agreed, and it doesnt change the compiled code either.
|
So seem the only right way is to fix the ICARUS product.... ;)
However '0 then' is more readable than '0then' by my view point... |
|
| Back to top |
|
 |
|