From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 4224 invoked by alias); 25 Aug 2006 17:59:34 -0000 Received: (qmail 4208 invoked by uid 22791); 25 Aug 2006 17:59:33 -0000 X-Spam-Check-By: sourceware.org Received: from smtp-out3.blueyonder.co.uk (HELO smtp-out3.blueyonder.co.uk) (195.188.213.6) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 25 Aug 2006 17:59:31 +0000 Received: from [172.23.170.145] (helo=anti-virus03-08) by smtp-out3.blueyonder.co.uk with smtp (Exim 4.52) id 1GGfxo-00082v-Bc for binutils@sourceware.org; Fri, 25 Aug 2006 18:59:28 +0100 Received: from [82.33.127.97] (helo=arthur) by asmtp-out3.blueyonder.co.uk with esmtp (Exim 4.52) id 1GGfxk-0007jc-TS for binutils@sourceware.org; Fri, 25 Aug 2006 18:59:24 +0100 Received: from malcolm by arthur with local (Exim 4.63) (envelope-from ) id 1GGfxk-0000K3-CJ for binutils@sourceware.org; Fri, 25 Aug 2006 18:59:24 +0100 Date: Fri, 25 Aug 2006 20:05:00 -0000 To: binutils@sourceware.org Subject: [PATCH]: fix some typos in gas strings Message-ID: <20060825175923.GA1222@arthur> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) From: Malcolm Parsons Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org X-SW-Source: 2006-08/txt/msg00292.txt.bz2 Some minor mistakes found when translating gas. Index: ecoff.c =================================================================== RCS file: /cvs/src/src/gas/ecoff.c,v retrieving revision 1.21 diff -u -p -r1.21 ecoff.c --- ecoff.c 5 May 2005 09:12:44 -0000 1.21 +++ ecoff.c 25 Aug 2006 17:58:16 -0000 @@ -2778,7 +2778,7 @@ ecoff_directive_val (int ignore ATTRIBUT expression (&exp); if (exp.X_op != O_constant && exp.X_op != O_symbol) { - as_bad (_(".val expression is too copmlex")); + as_bad (_(".val expression is too complex")); demand_empty_rest_of_line (); return; } Index: config/tc-ns32k.c =================================================================== RCS file: /cvs/src/src/gas/config/tc-ns32k.c,v retrieving revision 1.26 diff -u -p -r1.26 tc-ns32k.c --- config/tc-ns32k.c 7 Jun 2006 11:27:58 -0000 1.26 +++ config/tc-ns32k.c 25 Aug 2006 17:58:16 -0000 @@ -1861,7 +1861,7 @@ convert_iif (void) size = 4; else { - as_bad (_("Displacement to large for :d")); + as_bad (_("Displacement too large for :d")); size = 4; } } Index: config/tc-sh64.c =================================================================== RCS file: /cvs/src/src/gas/config/tc-sh64.c,v retrieving revision 1.21 diff -u -p -r1.21 tc-sh64.c --- config/tc-sh64.c 7 Jun 2006 11:27:58 -0000 1.21 +++ config/tc-sh64.c 25 Aug 2006 17:58:17 -0000 @@ -1533,7 +1533,7 @@ shmedia_check_limits (offsetT *valp, bfd case BFD_RELOC_SH_IMMU16: if (val < 0 || val > (1 << 16) - 1) - msg = _("invalid operand, not an 16-bit unsigned value: %d"); + msg = _("invalid operand, not a 16-bit unsigned value: %d"); break; case BFD_RELOC_SH_PT_16: -- Malcolm Parsons