Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Daniël Mantione
Op Wed, 5 Dec 2007, schreef Bee: Hi all, Is it just me or above methods are indeed not mentioned within fpc's doc 2.2.0? Any texts that are supposed to be a link to above methods is not formed as a link. Just to make sure, before I'll report this to mantis as a bug. :)

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Bee
This is documentation generated with fpc 2.3.1 source code. Ah, there must be something wrong with fpc 2.2.0 generated documentation. :( BTW... where can I download laz 9.24 documentation? I'd like to convert them to chm format as well. Just like what I did to fpc doc 2.2.0. :) -Bee- has

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Vincent Snijders
Bee schreef: I have documentation of those at: http://lazarus-ccr.sourceforge.net/docs/rtl/system/stringfunctions.html Yes, they are there on fpc doc for fpc 2.0.4. But when I open fpc doc on fpc 2.2.0, the detail pages of those routines are gone. This is documentation generated with fpc

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Bee
I have documentation of those at: http://lazarus-ccr.sourceforge.net/docs/rtl/system/stringfunctions.html Yes, they are there on fpc doc for fpc 2.0.4. But when I open fpc doc on fpc 2.2.0, the detail pages of those routines are gone. -Bee- has Bee.ography at:

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Vincent Snijders
Bee schreef: This is documentation generated with fpc 2.3.1 source code. Ah, there must be something wrong with fpc 2.2.0 generated documentation. :( BTW... where can I download laz 9.24 documentation? You can't, but watch this package:

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Tom Verhoeff
On Wed, Dec 05, 2007 at 09:12:00AM +0100, Daniël Mantione wrote: Op Wed, 5 Dec 2007, schreef Bee: Is it just me or above methods are indeed not mentioned within fpc's doc 2.2.0? Any texts that are supposed to be a link to above methods is not formed as a link.

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Bee
http://www.freepascal.org/docs-html/rtl/system/stringfunctions.html That's exactly what I got. Notice that those 3 routines I mentioned are not formed as link to further explanation. -Bee- has Bee.ography at: http://beeography.wordpress.com ___

[fpc-pascal] fpc 2.2.1 breaks laz 9.25

2007-12-05 Thread Bee
Hi all, http://www.freepascal.org/mantis/view.php?id=10327 This bug makes Lazarus 9.25 SVN unusable. Here are the output of lazarus after compiled by fpc 2.2.1 SVN: [EMAIL PROTECTED]:~/Programs/laz-9.25$ sudo make clean --- snip --- [EMAIL PROTECTED]:~/Programs/laz-9.25$ make all

Re: [fpc-pascal] Lazarus + Qt4 in FreeBSD

2007-12-05 Thread [EMAIL PROTECTED]
I'm stupid!!! In lcl/interfaces/qt/qt4.pas is wrote: {$IFDEF MSWINDOWS} QtIntf = 'libqt4intf.dll'; {$ENDIF} {$IFDEF LINUX} QtIntf = 'libqt4intf.so'; {$ENDIF} {$IFDEF DARWIN} QtIntf = ''; {$ENDIF} FREEBSD... not found!! :D I sugest add this: {$IFDEF FREEBSD} QtIntf = 'libqt4intf.so';

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Vincent Snijders
Bee schreef: http://www.freepascal.org/docs-html/rtl/system/stringfunctions.html That's exactly what I got. Notice that those 3 routines I mentioned are not formed as link to further explanation. I have documentation of those at:

Re: [fpc-pascal] copy(), length(), and setlength() is not mentioned in fpc docs?

2007-12-05 Thread Roberto Padovani
BTW, I like your chm documentation...it's actually much quicker to search than pdf (acroreader is slow for me with 1500 pages). And it also searches for related topics...very good job IMHO. R# 2007/12/5, Bee [EMAIL PROTECTED]: This is documentation generated with fpc 2.3.1 source code. Ah,

[fpc-pascal] Local compiler options

2007-12-05 Thread Adriaan van Os
Suppose, I want to use a compiler directive locally and reset it after that. GPC has {$local ...} and {$endlocal}. FPC in mac-mode has {$push} and {$pop}, e.g. {$push} i:= longword( -1) {$pop} I didn't find an equivalent for FPC in delphi or objfpc mode. All I can think of is {$ifopt R+}

Re: [fpc-pascal] Local compiler options

2007-12-05 Thread Jonas Maebe
On 05 Dec 2007, at 10:23, Adriaan van Os wrote: I didn't find an equivalent for FPC in delphi or objfpc mode. All I can think of is {$ifopt R+} {$define local_RangeCheck} {$endif} {$R-} i:= longword( -1) {$ifdef local_RangeCheck} {R+} {$endif} That's indeed the classic way to do it in