From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Thien-Thi Nguyen Newsgroups: gmane.lisp.guile.user Subject: another utf-8 decoder Date: Thu, 23 Apr 2009 11:48:00 +0200 Message-ID: <87ws9bn1kf.fsf@ambire.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1240480745 15561 80.91.229.12 (23 Apr 2009 09:59:05 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Thu, 23 Apr 2009 09:59:05 +0000 (UTC) To: guile-user@gnu.org Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Thu Apr 23 12:00:24 2009 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1Lwvek-0006dv-Vx for guile-user@m.gmane.org; Thu, 23 Apr 2009 11:55:47 +0200 Original-Received: from localhost ([127.0.0.1]:44569 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LwvdL-0005pz-Kr for guile-user@m.gmane.org; Thu, 23 Apr 2009 05:54:19 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lwvbt-0005gw-10 for guile-user@gnu.org; Thu, 23 Apr 2009 05:52:49 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lwvbq-0005fw-8Q for guile-user@gnu.org; Thu, 23 Apr 2009 05:52:48 -0400 Original-Received: from [199.232.76.173] (port=35922 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lwvbq-0005fr-1E for guile-user@gnu.org; Thu, 23 Apr 2009 05:52:46 -0400 Original-Received: from smtp-out25.alice.it ([85.33.2.25]:2357) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lwvbp-00033A-JR for guile-user@gnu.org; Thu, 23 Apr 2009 05:52:45 -0400 Original-Received: from FBCMMO02.fbc.local ([192.168.68.196]) by smtp-out25.alice.it with Microsoft SMTPSVC(6.0.3790.3959); Thu, 23 Apr 2009 11:52:42 +0200 Original-Received: from FBCMCL01B04.fbc.local ([192.168.69.85]) by FBCMMO02.fbc.local with Microsoft SMTPSVC(6.0.3790.1830); Thu, 23 Apr 2009 11:52:37 +0200 Original-Received: from ambire.localdomain ([79.21.70.195]) by FBCMCL01B04.fbc.local with Microsoft SMTPSVC(6.0.3790.3959); Thu, 23 Apr 2009 11:52:37 +0200 Original-Received: from ttn by ambire.localdomain with local (Exim 4.63) (envelope-from ) id 1LwvXE-0004P4-AU for guile-user@gnu.org; Thu, 23 Apr 2009 11:48:00 +0200 User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.0.60 (gnu/linux) X-OriginalArrivalTime: 23 Apr 2009 09:52:37.0803 (UTC) FILETIME=[3C0567B0:01C9C3F9] X-detected-operating-system: by monty-python.gnu.org: Windows 2000 SP4, XP SP1+ X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:7257 Archived-At: Greetings earthlings, Just a quick message to signal that ttn-do 355 has Yet Another UTF-8 reader. A nice feature that others (that i've briefly researched) do not have is that the byte stream is exposable. This means you can write a reader for another encoding (or use another UTF-8 reader instance) and have them cooperate by passing around the byte stream. Other niceties: input type muxing, built-in skip and resync, separation of UCS check from UTF-8 proper, complete example in documentation. For more info, see . thi