Re: [fpc-pascal]Line Continuation

2003-02-13 Thread James Mills
On Thu, Feb 13, 2003 at 08:39:27PM +0200, Haluk DUMAN wrote: Never post HTML to the list. Use PlainText. cheers James ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]CompareStr

2003-02-13 Thread Michał Kamburelis
Hello ! You found a bug : CompareStr( 'hello', 'hello-bye' ) = 0. It's already fixed in FPC 1.1 and 1.0.7, so I guess you're using FPC 1.0.6 or older. You can switch to FPC 1.0.7 or you can fix this by editing RTL sources : At least for FPC 1.0.6, it's in file rtl/objpas/sysstr.inc, lines 109 - 1

Re: [fpc-pascal]CompareStr

2003-02-13 Thread Iván Montes
Sorry Michael, I just found out that this happens in the 1.0.6 release version of FPC. It's fixed with a current snapshot. Sorry again, Ivan ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]Line Continuation

2003-02-13 Thread Marco van de Voort
C[ text/html is unsupported, treating like TEXT/PLAIN ] > > > > > > Hi >list, > http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]Line Continuation

2003-02-13 Thread Sebastian Günther
Haluk DUMAN schrieb: Hi list, {First excuse my poor english} What is the "Line Continuation" character for FPC ? there is no "line continuation" in Pascal. You can add a line break at arbitrary positions between two consecutive tokens. To split strings, use +: 'some long string, ' + 'contin

[fpc-pascal]Line Continuation

2003-02-13 Thread Haluk DUMAN
Hi list, {First excuse my poor english} What is the "Line Continuation" character for FPC ? From BorlandC++ ::: ((( Using the Backslash (\) for Line Continuation A long token sequence can straddle a line by using a backslash (\). The backslash and the following newline are both stripped to

RE: [fpc-pascal]FPC Error! :(

2003-02-13 Thread Lee, John
This isn't enought info! A bit more info needed eg what version/flavour of fpc, date, what source are you compiling...Regards John -Original Message- From: James Mills [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 13, 2003 17:21 To: [EMAIL PROTECTED] Subject: [fpc-pascal]FPC Error!

[fpc-pascal]FPC Error! :(

2003-02-13 Thread James Mills
Hi, What on earth does: schanserv.pas(715) Fatal: Internal error 55665566 mean ? cheers James ___ fpc-pascal maillist - [EMAIL PROTECTED] http://lists.freepascal.org/mailman/listinfo/fpc-pascal

Re: [fpc-pascal]CompareStr

2003-02-13 Thread Michael Van Canneyt
On Thu, 13 Feb 2003, [iso-8859-1] Iván Montes wrote: > - Original Message - > From: "Michael Van Canneyt" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, February 13, 2003 1:59 PM > Subject: Re: [fpc-pascal]CompareStr > > > What version are you using ? I have fixed a bug

Re: [fpc-pascal]ExtractFileDir ?

2003-02-13 Thread Iván Montes
- Original Message - From: "Anton Tichawa" <[EMAIL PROTECTED]> > So there are two errors: > > 1. I decremented below j, but the programmer had in mind that i was above j. > the while-statement should read 'while (I > J) ..' > > 2. The Copy returns the full string for length 0 - > > Note: I

Re: [fpc-pascal]CompareStr

2003-02-13 Thread Iván Montes
- Original Message - From: "Michael Van Canneyt" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 1:59 PM Subject: Re: [fpc-pascal]CompareStr What version are you using ? I have fixed a bug report about this some time ago: Revision 1.1.2.14 2002/11/28 20:1

Re: [fpc-pascal]CPU rel2rev23 uploaded

2003-02-13 Thread Thomas Schatzl
From: "Thomas Schatzl" <[EMAIL PROTECTED]> Sent: Thursday, February 13, 2003 2:01 PM Subject: [fpc-pascal]CPU rel2rev23 uploaded > > [CPU rel2rev23 update announcement...] > As usual forgot to mention the most important thing, the URLs... http://members.yline.com/~tom_at_work/cpudist.zip for the

[fpc-pascal]CPU rel2rev23 uploaded

2003-02-13 Thread Thomas Schatzl
Hi, just updated my CPU package to rel2rev23. No breathtaking news, just a plain simple update: - added a new field to the TCPUInfo record which contains the number of logical processors if Hyperthreading enabled (e.g. P4 only). - bugfixes for Cyrix processor capabilities (hope they're correct

Re: [fpc-pascal]CompareStr

2003-02-13 Thread Michael Van Canneyt
On Thu, 13 Feb 2003, [iso-8859-1] Iván Montes wrote: > Hi, > > Maybe it's how it's supposed to be but if use : > > compareStr( 'hello', 'hello-bye' ) > > I get 0, so they are equal. In the fixbranch version I get -45 ? ( version: Free Pascal Compiler version 1.0.7 [2003/02/03] for i386 ) What