Re: [fpc-pascal] compiling html docs from svn

2005-09-04 Thread Bob Barry
Michael - On Sat, 3 Sep 2005 19:57 you wrote: > > Running "make pdf" fails similarly, with: > >    l.120 ...legal enum minimum-size specifier "arg1"] > It is hopefully fixed now. Thanks for your effort and response. I've updated from svn and tried "make html", but behaviour was exactly the same as

Re: [fpc-pascal] ANSI String concatenation eats Linux RAM ?

2005-09-04 Thread Peter Vreman
> > Dear all, > > I have a little problem (maybe in understanding) of the usage of the > AnsiString. > > I use now FPC 1.0.6 (not updated yet to 2.0.0 as have fear that > something in my old projects wont work) > > I will get right on the point. > It seems to me that I can not use SA:=SA+'z

[fpc-pascal] ANSI String concatenation eats Linux RAM ?

2005-09-04 Thread Andrej Cuckov
Dear all, I have a little problem (maybe in understanding) of the usage of the AnsiString. I use now FPC 1.0.6 (not updated yet to 2.0.0 as have fear that something in my old projects wont work) I will get right on the point. It seems to me that I can not use SA:=SA+'zz'

Re: [fpc-pascal] Re: Re: arbitrary number of parameters in procedure

2005-09-04 Thread Michael Van Canneyt
On Sun, 4 Sep 2005, Pianoman wrote: > Hi Michael, I tested your proc but it don't want to ccompile . > program follows: > program test; > var a,b,c,d:integer; > res:double; > > > Procedure AddNums(Var Result : Double; Args : Array of integer); This must be "array of const", not "Array of inte

[fpc-pascal] Re: Re: arbitrary number of parameters in procedure

2005-09-04 Thread Pianoman
Hi Michael, I tested your proc but it don't want to ccompile . program follows: program test; var a,b,c,d:integer; res:double; Procedure AddNums(Var Result : Double; Args : Array of integer); Var I : Integer; begin Result:=0; For I:=0 to High(Args) do // High(args) is the last valid index.