From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5145 invoked by alias); 16 Feb 2011 05:34:52 -0000 Received: (qmail 4993 invoked by uid 22791); 16 Feb 2011 05:34:50 -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 05:34:45 +0000 Received: (qmail 15256 invoked from network); 16 Feb 2011 05:34:43 -0000 Received: from unknown (HELO ?192.168.0.101?) (yao@127.0.0.2) by mail.codesourcery.com with ESMTPA; 16 Feb 2011 05:34:43 -0000 Message-ID: <4D5B61F0.1030502@codesourcery.com> Date: Wed, 16 Feb 2011 06:44: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: gdb-patches@sourceware.org Subject: Re: New ARI warning Wed Feb 16 01:53:55 UTC 2011 References: <20110216015355.GA13284@sourceware.org> In-Reply-To: <20110216015355.GA13284@sourceware.org> Content-Type: multipart/mixed; boundary="------------050609030908060600020104" 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/msg00351.txt.bz2 This is a multi-part message in MIME format. --------------050609030908060600020104 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Content-length: 278 On 02/16/2011 09:53 AM, GDB Administrator wrote: > 1103a1104 >> gdb/thread.c:983: gettext: _ markup: All messages should be marked up with _. > gdb/thread.c:983: error ("invalid thread id %d\n", tmp_tid); This patch is obvious, and I'll apply it later today. -- Yao (齐尧) --------------050609030908060600020104 Content-Type: text/x-patch; name="ari_thread.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="ari_thread.patch" Content-length: 615 2011-02-16 Yao Qi * thread.c (info_threads_command): Add missing i18n markup. 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 05:19:32 -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\n"), tmp_tid); tid = tmp_tid; print_thread_info (uiout, tid, -1); --------------050609030908060600020104--