From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Julian Graham Newsgroups: gmane.lisp.guile.devel Subject: Re: [PATCH] Unicode string normalization Date: Tue, 5 Jan 2010 10:00:58 -0500 Message-ID: <2bc5f8211001050700m6257eb43i6d5ff621a7bddb45@mail.gmail.com> References: <2bc5f8211001012138r20128284k824f24e332c37a1e@mail.gmail.com> <417254.15002.qm@web37906.mail.mud.yahoo.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: ger.gmane.org 1262703678 30395 80.91.229.12 (5 Jan 2010 15:01:18 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 5 Jan 2010 15:01:18 +0000 (UTC) Cc: guile-devel To: Mike Gran Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Jan 05 16:01:10 2010 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from terminus-est.gnu.org ([66.92.78.210] helo=lists.gnu.org) by lo.gmane.org with esmtp (Exim 4.50) id 1NSAuD-00086P-Jq for guile-devel@m.gmane.org; Tue, 05 Jan 2010 16:01:09 +0100 Original-Received: from localhost ([127.0.0.1]:49201 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSAuC-0004sB-OY for guile-devel@m.gmane.org; Tue, 05 Jan 2010 10:01:08 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NSAuA-0004rL-2B for guile-devel@gnu.org; Tue, 05 Jan 2010 10:01:06 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NSAu4-0004nv-Ma for guile-devel@gnu.org; Tue, 05 Jan 2010 10:01:04 -0500 Original-Received: from [199.232.76.173] (port=41687 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NSAu4-0004nr-Gb for guile-devel@gnu.org; Tue, 05 Jan 2010 10:01:00 -0500 Original-Received: from mail-fx0-f228.google.com ([209.85.220.228]:61552) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NSAu4-0000tD-5S for guile-devel@gnu.org; Tue, 05 Jan 2010 10:01:00 -0500 Original-Received: by fxm28 with SMTP id 28so7526989fxm.26 for ; Tue, 05 Jan 2010 07:00:58 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=Mq9W5kFrpAUwC/0QsPtfWrHeUGw4i1px4DZ3LuvgQ+Y=; b=mOca8R/qe8Vj/go+PsMt6PqzmhvnOIK/cDha41vaKB9uINREBONn28gUZBjLXtXjuW qgecAwaSx4opGfJs0GzQHYz11fwqZjoNldgnrWKb9ToV5kYWoFWZ6qAyCDcGzNQlYW7k OK2THw24sDDs4kURVgAA+iz6uINs/LfTA3dzA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=r6RCctIY5vpsIqNE165NxwwQV8RFq2ih2VPThUKjKpDSj9l4c7HerNR9lPjgK6qvHF YqeQqtWnSHJiL6wMgu+OQcBE2iXY4XGJ7055W9+l0y52YaTvLou6Q8e/TLU8jX637VKp h37nYIWw4IXLzaX963Uu9L6Np/swA/rqgQj3M= Original-Received: by 10.216.86.83 with SMTP id v61mr4191371wee.80.1262703658208; Tue, 05 Jan 2010 07:00:58 -0800 (PST) In-Reply-To: <417254.15002.qm@web37906.mail.mud.yahoo.com> X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.6 (newer, 2) X-BeenThere: guile-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Developers list for Guile, the GNU extensibility library" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Errors-To: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.devel:9827 Archived-At: > You might consider checking if the string created by normalize_str > should be reduced to=A0the 1-byte-per-character representation.=A0 The pr= ocecure > scm_i_try_narrow_string could be used for that. Good idea -- I'll add that. Thanks!