Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-25 Thread L505
| I guess this is a pascal list here and no ada advertisement list? | no, n'ada ada ada-vertisement list (sorry, could n'ada resisted.) I was looking into ada the other day on some wikis, though. Have to check deeper into its origins. ___ fpc-pascal

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Lance Boyle
On May 24, 2005, at 11:31 PM, Marco van de Voort wrote: On May 24, 2005, at 5:31 AM, Jonas Maebe wrote: range checking issues--is range checking off by default? Yes, it is. Add {$r+} at the top of your source to turn it on, or add "-Cr" to the command line options of the compiler. Thanks,

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Florian Klaempfl
Lance Boyle wrote: > Well--that's just lovely. How about getting this fixed? What other > surprises should I know about before using FPC? I wonder how you can be suprised, it's perfectly documented: http://www.freepascal.org/docs-html/prog/progsu46.html#x53-510001.1.46 If you didn't use a Borlan

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Marco van de Voort
> On May 24, 2005, at 5:31 AM, Jonas Maebe wrote: > >> range checking issues--is range checking off by default? > > > > Yes, it is. Add {$r+} at the top of your source to turn it on, or add > > "-Cr" to the command line options of the compiler. > > Thanks, Jonas. > > Well--that's just lovely. Ho

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Lance Boyle
On May 24, 2005, at 1:00 PM, L505 wrote: From the mailing list: http://www.nl.freepascal.org/lists/fpc-pascal/2003-October/006123.html I read a bit about range checking there. Thanks--a good reference to what is apparently a long-standing problem. - Original Message - From: "Lanc

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Lance Boyle
On May 24, 2005, at 5:31 AM, Jonas Maebe wrote: On 24 mei 2005, at 13:58, Lance Boyle wrote: As I've indicated in some of the comments, there appears to be some range checking issues--is range checking off by default? Yes, it is. Add {$r+} at the top of your source to turn it on, or add "

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread L505
>From the mailing list: http://www.nl.freepascal.org/lists/fpc-pascal/2003-October/006123.html I read a bit about range checking there. - Original Message - From: "Lance Boyle" As I've indicated in some of the comments, there appears to be some range checking issues--is range checking

Re: [fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Jonas Maebe
On 24 mei 2005, at 13:58, Lance Boyle wrote: As I've indicated in some of the comments, there appears to be some range checking issues--is range checking off by default? Yes, it is. Add {$r+} at the top of your source to turn it on, or add "-Cr" to the command line options of the compiler.

[fpc-pascal] Arrays in debugger; No range errors on arrays

2005-05-24 Thread Lance Boyle
Hi list, I'm playing with FPC 2.0.0 on OS X 10.3.9 using Xcode 1.5. I run the following little program... program dumpmePascal; uses EmptyPlaceHolderUnit; var i : integer; topArray : array[10..13] of real; {debugger doesn't show this array at all--discussed previ