From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1406 invoked by alias); 16 Feb 2011 09:49:36 -0000 Received: (qmail 1398 invoked by uid 22791); 16 Feb 2011 09:49:35 -0000 X-SWARE-Spam-Status: No, hits=-1.8 required=5.0 tests=AWL,BAYES_00,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from mail.codesourcery.com (HELO mail.codesourcery.com) (38.113.113.100) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Wed, 16 Feb 2011 09:49:31 +0000 Received: (qmail 26130 invoked from network); 16 Feb 2011 09:49:29 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 16 Feb 2011 09:49:29 -0000 Message-ID: <4D5B9DA7.8050204@codesourcery.com> Date: Wed, 16 Feb 2011 10:09:00 -0000 From: Yao Qi User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.2.13) Gecko/20101208 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: Pierre Muller CC: gdb-patches@sourceware.org Subject: Re: New ARI warning Wed Feb 16 01:53:55 UTC 2011 References: <20110216015355.GA13284@sourceware.org> <4D5B61F0.1030502@codesourcery.com> <006601cbcdb4$e8381cf0$b8a856d0$@muller@ics-cnrs.unistra.fr> In-Reply-To: <006601cbcdb4$e8381cf0$b8a856d0$@muller@ics-cnrs.unistra.fr> Content-Type: multipart/mixed; boundary="------------020901050609000405090108" X-IsSubscribed: yes 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: 2011-02/txt/msg00356.txt.bz2 This is a multi-part message in MIME format. --------------020901050609000405090108 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 177 On 02/16/2011 04:38 PM, Pierre Muller wrote: > Hi Yao, > > could you please modify this patch > so as to also remove the trailing newline? Sure. Applied. -- Yao (齐尧) --------------020901050609000405090108 Content-Type: text/x-patch; name="ari_thread.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ari_thread.patch" Content-length: 1050 Index: gdb/ChangeLog =================================================================== RCS file: /cvs/src/src/gdb/ChangeLog,v retrieving revision 1.12591 diff -u -r1.12591 ChangeLog --- gdb/ChangeLog 15 Feb 2011 21:43:24 -0000 1.12591 +++ gdb/ChangeLog 16 Feb 2011 09:45:02 -0000 @@ -1,3 +1,8 @@ +2011-02-16 Yao Qi + + * thread.c (info_threads_command): Add missing i18n markup and remove + trailing newline. + 2011-02-15 Paul Pluzhnikov * breakpoint.c (longjmp_names): New variable. Index: gdb/thread.c =================================================================== RCS file: /cvs/src/src/gdb/thread.c,v retrieving revision 1.132 diff -u -r1.132 thread.c --- gdb/thread.c 15 Feb 2011 21:17:52 -0000 1.132 +++ gdb/thread.c 16 Feb 2011 09:45:02 -0000 @@ -980,7 +980,7 @@ unsigned int highrange; if (tmp_tid <= 0) - error ("invalid thread id %d\n", tmp_tid); + error (_("invalid thread id %d"), tmp_tid); tid = tmp_tid; print_thread_info (uiout, tid, -1); --------------020901050609000405090108--