From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20666 invoked by alias); 11 Oct 2013 17:25:40 -0000 Mailing-List: contact binutils-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: binutils-owner@sourceware.org Received: (qmail 20654 invoked by uid 89); 11 Oct 2013 17:25:40 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_50,RCVD_IN_DNSWL_LOW,RP_MATCHES_RCVD,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-ie0-f178.google.com Received: from mail-ie0-f178.google.com (HELO mail-ie0-f178.google.com) (209.85.223.178) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Fri, 11 Oct 2013 17:25:39 +0000 Received: by mail-ie0-f178.google.com with SMTP id to1so9187106ieb.9 for ; Fri, 11 Oct 2013 10:25:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=ot/mqpzCHAqsht8JnBU7AWV+7NnFBDIMblbFgIuk5EI=; b=YN+NqzqYfR5UVjngtisXrs1pVkwQZkNjO6M/Pldt3eqFc5D2lF0MG7gQUp0F906gmY aYJUhjF23I/y+Q6tRhN5sySz47X6FBsGY1s95BLshX21milI8PmJRezp7nUqXbDwehw9 u3Gp6YzEdzpKb2SxTHnmu9FRirkMw5ZNyEPLUzcc8UB8/MiuvGkkHDm3epP7r1Z6kuN0 PT/cgSlcBzajCQ2HCrnCbrWn9dlLwC1aEqpsK9LJewTbSXHVVMYfHVopxdNH0y4hL+CB 6+IdFoO4Ym0bWZDIi38zFL5gywFqbGOtz3GHCTF7RMdnu1MYU+pKbhvoRCE10pwp1LYz gUjg== X-Gm-Message-State: ALoCoQkh96sogdrkiDFlkeaVKKDSWLwkI6iSRPo1E/rkcxbvo/pAvaNZ/AHD6/1kCwP62ybXTPmfiO2cXyyNFKqIr0YJxjrTIkIP49UVZ/pIyOUg9n/YQnyEg6DmSsJeT5lwlOzjt/bInzCbx8wZE07pjnWZ5SndGdD8abb4NdBSWdYyKF3otHD8+20cq1vk5/FkOe0FzgfTr65uKHKIFdDDgIFkrZgvnw== X-Received: by 10.50.147.65 with SMTP id ti1mr3754750igb.12.1381512337319; Fri, 11 Oct 2013 10:25:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.11.68 with HTTP; Fri, 11 Oct 2013 10:25:17 -0700 (PDT) From: Roland McGrath Date: Fri, 11 Oct 2013 17:25:00 -0000 Message-ID: Subject: [COMMITTED PATCH] avoid non-ASCII/non-UTF8 character in string literal in winduni.c To: "binutils@sourceware.org" Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-SW-Source: 2013-10/txt/msg00166.txt.bz2 Committed as obvious enough, to trunk and 2.24 branch. I'm not entirely sure the patch will come through the email without mangling the character. It's replacing a literal \345 byte in the source with the octal literal syntax \345. It's just good practice to avoid the source files having non-UTF8 bytes in them. Thanks, Roland binutils/ * winduni.c (languages): Use \345 (octal syntax) rather than literal non-ASCII/non-UTF8 character in string literal. --- a/binutils/winduni.c +++ b/binutils/winduni.c @@ -101,7 +101,7 @@ static const wind_language_t languages[] =3D { 0x040D, 862, 1255, "Hebrew", "Israel" }, { 0x040E, 852, 1250, "Hungarian", "Hungary" }, { 0x040F, 850, 1252, "Icelandic", "Iceland" }, { 0x0410, 850, 1252, "Italian", "Italy" }, { 0x0411, 932, 932, "Japanese", "Japan" }, { 0x0412, 949, 949, "Korean", "Korea (south)" }, - { 0x0413, 850, 1252, "Dutch", "Netherlands" }, { 0x0414, 850, 1252, "Norwegian (Bokm=EF=BF=BDl)", "Norway" }, + { 0x0413, 850, 1252, "Dutch", "Netherlands" }, { 0x0414, 850, 1252, "Norwegian (Bokm\345l)", "Norway" }, { 0x0415, 852, 1250, "Polish", "Poland" }, { 0x0416, 850, 1252, "Portuguese", "Brazil" }, { 0x0418, 852, 1250, "Romanian", "Romania" }, { 0x0419, 866, 1251, "Russian", "Russia" }, { 0x041A, 852, 1250, "Croatian", "Croatia" }, { 0x041B, 852, 1250, "Slovak", "Slovakia" },