From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19452 invoked by alias); 15 May 2012 16:38:13 -0000 Received: (qmail 19158 invoked by uid 22791); 15 May 2012 16:38:11 -0000 X-SWARE-Spam-Status: No, hits=-3.5 required=5.0 tests=AWL,BAYES_00,KHOP_RCVD_UNTRUST,RCVD_IN_HOSTKARMA_NO,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Tue, 15 May 2012 16:37:58 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id E972E1C6DCD; Tue, 15 May 2012 12:37:57 -0400 (EDT) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id NPzPf9HnHNW7; Tue, 15 May 2012 12:37:57 -0400 (EDT) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id B4C181C6D9B; Tue, 15 May 2012 12:37:57 -0400 (EDT) Received: by joel.gnat.com (Postfix, from userid 1000) id 29E20145616; Tue, 15 May 2012 09:37:48 -0700 (PDT) Date: Tue, 15 May 2012 16:38:00 -0000 From: Joel Brobecker To: Jan Kratochvil Cc: gdb-patches@sourceware.org Subject: Re: [RFC] init_breakpoint_sal: Add quotes around part of command in error message Message-ID: <20120515163748.GS10253@adacore.com> References: <1337093982-27099-1-git-send-email-brobecker@adacore.com> <20120515162807.GA4784@host2.jankratochvil.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20120515162807.GA4784@host2.jankratochvil.net> User-Agent: Mutt/1.5.20 (2009-06-14) Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2012-05/txt/msg00579.txt.bz2 > On Tue, 15 May 2012 16:59:42 +0200, Joel Brobecker wrote: > > - error (_("Garbage %s follows condition"), arg); > > + error (_("Garbage `%s' follows condition"), arg); > > When it is already discussed I find `%s' to be deprecated in favor of '%s': > http://www.gnu.org/prep/standards/standards.html#Quote-Characters Ah, yes, that's right. Thanks for catching that. I will replace the opening quote by another single-quote and commit. Thanks Tom and Jan. -- Joel