Message-ID: <3A9152CC.4B67D7F9@attglobal.net>
Date: Mon, 19 Feb 2001 09:07:23 -0800
From: Chip Hayes <jwhayes@attglobal.net>
X-Mailer: Mozilla 4.72 (Macintosh; U; PPC)
X-Accept-Language: en
MIME-Version: 1.0
Newsgroups: rec.arts.int-fiction
Subject: Re: [Inform] Debug verbs
References: <3a9102f2.456587@news.tiscalinet.it> <20010219114421.04687.00001160@ng-fe1.aol.com>
Content-Type: text/plain; charset=us-ascii; x-mac-type="54455854"; x-mac-creator="4D4F5353"
Content-Transfer-Encoding: 7bit
NNTP-Posting-Host: 32.101.147.183
X-Trace: 19 Feb 2001 17:15:08 GMT, 32.101.147.183
Organization: Global Network Services - Remote Access Mail & News Services
Lines: 21
X-Complaints-To: abuse@prserv.net
Path: news.duke.edu!newsgate.duke.edu!nntp-out.monmouth.com!newspeer.monmouth.com!cpk-news-hub1.bbnplanet.com!news.gtei.net!news.tele.dk!193.174.75.178!news-fra1.dfn.de!bignews.mediaways.net!abq.news.ans.net!newsfeed.us.ibm.net!ibm.net!news1.prserv.net!32.101.147.183
Xref: news.duke.edu rec.arts.int-fiction:83654

Also... if you are using Inform 6.21, there's something else you should know
when turning off strict error checking using the -S swtich...

If you don't have the DEBUG constant declared in your code, you should add the
following after Including the parser:

#ifndef DEBUG;
Global debug_flag;
#endif;

This fixes a problem in the compiler which spits out errors when debugging is
off.

OKB -- not okblacke wrote:

>      As someone else has already mentioned, strict error checking is on by
> default.  You need to turn it off by supplying the ~S switch when you run the
> compiler.
>
> --OKB (BrenBarn@aol.com) -- no relation to okblacke

