From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18028 invoked by alias); 18 Feb 2010 14:40:01 -0000 Received: (qmail 18006 invoked by uid 22791); 18 Feb 2010 14:40:01 -0000 X-SWARE-Spam-Status: No, hits=-6.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_HI,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Thu, 18 Feb 2010 14:39:55 +0000 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id o1IEdj0B017161 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK); Thu, 18 Feb 2010 09:39:45 -0500 Received: from tyan-ft48-01.lab.bos.redhat.com (tyan-ft48-01.lab.bos.redhat.com [10.16.42.4]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o1IEdhDE015156 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 18 Feb 2010 09:39:44 -0500 Received: from tyan-ft48-01.lab.bos.redhat.com (localhost [127.0.0.1]) by tyan-ft48-01.lab.bos.redhat.com (8.14.3/8.14.3) with ESMTP id o1IEjnQY001340; Thu, 18 Feb 2010 15:45:49 +0100 Received: (from jakub@localhost) by tyan-ft48-01.lab.bos.redhat.com (8.14.3/8.14.3/Submit) id o1IEjjPJ001338; Thu, 18 Feb 2010 15:45:45 +0100 Date: Thu, 18 Feb 2010 14:40:00 -0000 From: Jakub Jelinek To: Marco Poletti Cc: Paolo Bonzini , "Joseph S. Myers" , gdr@integrable-solutions.net, Gabriel Dos Reis , gcc-patches@gcc.gnu.org Subject: Re: gcc/cp/pt.c: use ngettext() when needed Message-ID: <20100218144545.GV2817@tyan-ft48-01.lab.bos.redhat.com> Reply-To: Jakub Jelinek References: <206fcf961002170906l1bdca005h3833890d35d7db5c@mail.gmail.com> <4B7C3571.60808@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-08-17) X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2010-02/txt/msg00718.txt.bz2 On Thu, Feb 18, 2010 at 03:33:34PM +0100, Marco Poletti wrote: > --- gcc/diagnostic.c (revisione 156858) > +++ gcc/diagnostic.c (copia locale) > @@ -519,6 +519,23 @@ inform (location_t location, const char > va_end (ap); > } > > +/* An informative note at LOCATION. Use this for additional details > on an error Too long line. > + message. The message is already translated. */ The message is not translated, inform_n does the translation. > +/* A hard error: the code is definitely ill-formed, and an object file > + will not be produced. The message is already translated. */ Likewise. Jakub