From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6529 invoked by alias); 26 Aug 2002 20:13:10 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 6521 invoked from network); 26 Aug 2002 20:13:08 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by sources.redhat.com with SMTP; 26 Aug 2002 20:13:08 -0000 Received: from int-mx2.corp.redhat.com (nat-pool-rdu.redhat.com [172.16.52.200] (may be forged)) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id g7QJwEl21004 for ; Mon, 26 Aug 2002 15:58:14 -0400 Received: from potter.sfbay.redhat.com (potter.sfbay.redhat.com [172.16.27.15]) by int-mx2.corp.redhat.com (8.11.6/8.11.6) with ESMTP id g7QKD5u15554; Mon, 26 Aug 2002 16:13:05 -0400 Received: from romulus.sfbay.redhat.com (remus.sfbay.redhat.com [172.16.27.252]) by potter.sfbay.redhat.com (8.11.6/8.11.6) with ESMTP id g7QKD4e07850; Mon, 26 Aug 2002 13:13:05 -0700 Received: (from kev@localhost) by romulus.sfbay.redhat.com (8.11.6/8.11.6) id g7QKD3O32000; Mon, 26 Aug 2002 13:13:03 -0700 Date: Mon, 26 Aug 2002 13:13:00 -0000 From: Kevin Buettner Message-Id: <1020826201302.ZM31999@localhost.localdomain> In-Reply-To: Grace Sainsbury "[rfa] rename insight to insight" (Aug 26, 2:29pm) References: <20020826142957.A24152@tomago.toronto.redhat.com> To: Grace Sainsbury , gdb-patches@sources.redhat.com Subject: Re: [rfa] rename insight to insight MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-SW-Source: 2002-08/txt/msg00863.txt.bz2 On Aug 26, 2:29pm, Grace Sainsbury wrote: > -int > -main (int argc, char **argv) > -{ > - struct captured_main_args args; > - args.argc = argc; > - args.argv = argv; > - catch_errors (captured_main, &args, "", RETURN_MASK_ALL); > - return 0; > -} > +/* int */ > +/* main (int argc, char **argv) */ > +/* { */ > +/* struct captured_main_args args; */ > +/* args.argc = argc; */ > +/* args.argv = argv; */ > +/* catch_errors (captured_main, &args, "", RETURN_MASK_ALL); */ > +/* return 0; */ > +/* } */ I think you might was well remove main() entirely instead of preserving it in a commented out form. If there's a real need to preserve it for a time, I think using #if 0 ... #endif is preferable. Kevin