From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7083 invoked by alias); 23 Oct 2002 19:36:11 -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 7073 invoked from network); 23 Oct 2002 19:36:09 -0000 Received: from unknown (HELO localhost.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 23 Oct 2002 19:36:09 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 77BB73CCB; Wed, 23 Oct 2002 15:36:08 -0400 (EDT) Message-ID: <3DB6FA28.1080304@redhat.com> Date: Wed, 23 Oct 2002 12:36:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020824 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Michael Snyder Cc: Adam Fedor , gdb-patches@sources.redhat.com Subject: Re: [PATCH] Objective-C language support. References: <3D889A97.90202@doc.com> <3DA37857.466240D9@redhat.com> <3DB4811E.5080106@redhat.com> <3DB6F744.410DB743@redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-10/txt/msg00469.txt.bz2 >> > >> > - error ("no args, no `this'"); > >> >> + error ("no args, no %s", name); > >> >> Michael, >> >> This changes GDB's behavior. Instead of printing: >> >> no args, no `this' >> it will print >> no args, no this >> >> I don't think GDB's output should be changed in this way. >> (I'm suprized that running the testsuite didn't detect this). > > > Hi Andrew, > > I corrected this with the patch below. I did not add a new test, > because I cannot find a way to invoke this error message. ;-/ Michael, my memory of the Apple patch is that it changed this everywhere, the above was just one example :-( (btw `this' not 'this'). Andrew