X-Loop: help-debbugs@HIDDEN Subject: bug#32272: [PATCH] iscntrl: behavior for chars >= 0x80 Resent-From: L A Walsh <coreutils@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-coreutils@HIDDEN Resent-Date: Wed, 25 Jul 2018 17:24:02 +0000 Resent-Message-ID: <handler.32272.B.153253941819826 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: report 32272 X-GNU-PR-Package: coreutils X-GNU-PR-Keywords: patch To: 32272 <at> debbugs.gnu.org X-Debbugs-Original-To: Coreutils <bug-coreutils@HIDDEN> Received: via spool by submit <at> debbugs.gnu.org id=B.153253941819826 (code B ref -1); Wed, 25 Jul 2018 17:24:02 +0000 Received: (at submit) by debbugs.gnu.org; 25 Jul 2018 17:23:38 +0000 Received: from localhost ([127.0.0.1]:57520 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1fiNVi-00059h-LK for submit <at> debbugs.gnu.org; Wed, 25 Jul 2018 13:23:38 -0400 Received: from eggs.gnu.org ([208.118.235.92]:36786) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <coreutils@HIDDEN>) id 1fiNVh-00059Q-BR for submit <at> debbugs.gnu.org; Wed, 25 Jul 2018 13:23:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <coreutils@HIDDEN>) id 1fiNVZ-000849-9a for submit <at> debbugs.gnu.org; Wed, 25 Jul 2018 13:23:32 -0400 Received: from lists.gnu.org ([2001:4830:134:3::11]:58848) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from <coreutils@HIDDEN>) id 1fiNVZ-00083y-6Z for submit <at> debbugs.gnu.org; Wed, 25 Jul 2018 13:23:29 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55956) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <coreutils@HIDDEN>) id 1fiNVV-0004Nf-To for bug-coreutils@HIDDEN; Wed, 25 Jul 2018 13:23:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <coreutils@HIDDEN>) id 1fiNVS-00081W-U8 for bug-coreutils@HIDDEN; Wed, 25 Jul 2018 13:23:25 -0400 Received: from ishtar.tlinx.org ([173.164.175.65]:44372 helo=Ishtar.sc.tlinx.org) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from <coreutils@HIDDEN>) id 1fiNVS-0007zD-Jt for bug-coreutils@HIDDEN; Wed, 25 Jul 2018 13:23:22 -0400 Received: from [192.168.3.12] (Athenae [192.168.3.12]) by Ishtar.sc.tlinx.org (8.14.7/8.14.4/SuSE Linux 0.8) with ESMTP id w6PHNFVI011901 for <bug-coreutils@HIDDEN>; Wed, 25 Jul 2018 10:23:18 -0700 Message-ID: <5B58B203.5000106@HIDDEN> Date: Wed, 25 Jul 2018 10:23:15 -0700 From: L A Walsh <coreutils@HIDDEN> User-Agent: Thunderbird MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x (no timestamps) [generic] [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -6.0 (------) P=C3=A1draig Brady wrote: > +This function does not support arguments outside of the range of the > +unsigned char type in locales with large character sets, on some platf= orms. > +OS X 10.5 will return non zero for characters >=3D 0x80 in UTF-8 local= es. > =20 --- According to Unicode, characters 0x80-0x9F are control characters, but characters >=3D0xA0 are not (and have different classifications (at least in Unicode). The patch doesn't say if OS X 10.5 is classifying them correctly or not. For example, 0xA0 is a type of Space, some are symbols, some ar= e letters, some are a type of punctuation, etc... Perhaps OS X is using their Unicode definition for characters defined= to be in a Unicode compatible encoding? =20
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) Content-Type: text/plain; charset=utf-8 X-Loop: help-debbugs@HIDDEN From: help-debbugs@HIDDEN (GNU bug Tracking System) To: L A Walsh <coreutils@HIDDEN> Subject: bug#32272: Acknowledgement ([PATCH] iscntrl: behavior for chars >= 0x80) Message-ID: <handler.32272.B.153253941819826.ack <at> debbugs.gnu.org> References: <5B58B203.5000106@HIDDEN> X-Gnu-PR-Message: ack 32272 X-Gnu-PR-Package: coreutils X-Gnu-PR-Keywords: patch Reply-To: 32272 <at> debbugs.gnu.org Date: Wed, 25 Jul 2018 17:24:02 +0000 Thank you for filing a new bug report with debbugs.gnu.org. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): bug-coreutils@HIDDEN If you wish to submit further information on this problem, please send it to 32272 <at> debbugs.gnu.org. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 32272: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D32272 GNU Bug Tracking System Contact help-debbugs@HIDDEN with problems
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.