[fpc-pascal] update confusion...

2007-12-09 Thread M Pulis
Folks, Not sure where to ask this, so I am starting with this list... Upgraded from xcode 2.1 to 2.4 and FPC 2.2.1. G5 quad, 10.4.11. My FPC xcode project builds ok, but, when I add an empty file and close the project, xcode says, to the effect: The project myProject.xcodeproj is read

Re: [fpc-pascal] can we have fpc's doc in chm format? [Patch]

2007-12-09 Thread Andrew Haines
Michael Van Canneyt wrote: On Fri, 7 Dec 2007, Andrew Haines wrote: PS you can have a peek at some chm's I made with fpdoc here: http://hainesservice.com/andrew/chms/ they are all crosslinked. With kchmviewer I get the following errors: An error occurred while loading

Re: [fpc-pascal] can we have fpc's doc in chm format? [Patch]

2007-12-09 Thread Andrew Haines
Andrew Haines wrote: Michael Van Canneyt wrote: On Fri, 7 Dec 2007, Andrew Haines wrote: PS you can have a peek at some chm's I made with fpdoc here: http://hainesservice.com/andrew/chms/ they are all crosslinked. With kchmviewer I get the following errors: An error occurred while loading

Re: [fpc-pascal] EOF on stdin

2007-12-09 Thread Tomas Hajny
On 8 Dec 07, at 13:20, Mark Morgan Lloyd wrote: Good grief- that was quick :-) Marco van de Voort wrote: I'm trying to distinguish between a case where there is no parameter on the command line and where there is piped input. The code below works under Win-32 but under Linux

Re: [fpc-pascal] problems using utf8toansi

2007-12-09 Thread Jonas Maebe
On 07 Dec 2007, at 20:01, Marc Santhoff wrote: Am Freitag, den 07.12.2007, 14:00 +0100 schrieb Jonas Maebe: Also, if you do not use the cwstring unit, a lot of things will not work with widestrings under *nix (including FreeBSD). The fact that some chars such as Umlauts and 'ß' work

Re: [fpc-pascal] can we have fpc's doc in chm format? [Patch]

2007-12-09 Thread Tomas Hajny
On 9 Dec 07, at 14:10, Andrew Haines wrote: Michael Van Canneyt wrote: On Fri, 7 Dec 2007, Andrew Haines wrote: PS you can have a peek at some chm's I made with fpdoc here: http://hainesservice.com/andrew/chms/ they are all crosslinked. With kchmviewer I get the following errors:

Re: [fpc-pascal] EOF on stdin

2007-12-09 Thread Mark Morgan Lloyd
Tomas Hajny wrote: I'm trying to distinguish between a case where there is no parameter on the command line and where there is piped input. For unix one can simply use termio.isatty(input) I think. Note that you could use function Do_IsDevice provided in system unit for this (if Input is

Re: [fpc-pascal] problems using utf8toansi

2007-12-09 Thread Marc Santhoff
Am Sonntag, den 09.12.2007, 21:38 +0100 schrieb Jonas Maebe: On 07 Dec 2007, at 20:01, Marc Santhoff wrote: Am Freitag, den 07.12.2007, 14:00 +0100 schrieb Jonas Maebe: Also, if you do not use the cwstring unit, a lot of things will not work with widestrings under *nix (including

Re: [fpc-pascal] problems using utf8toansi

2007-12-09 Thread Marc Santhoff
Am Sonntag, den 09.12.2007, 21:38 +0100 schrieb Jonas Maebe: You can compile with -al and search for CWSTRING in the assembler file generated for your main program. Since that unit has an initialization section, it will be in the init/final table if it's included somewhere. Another try: $