From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Neil Jerram Newsgroups: gmane.lisp.guile.devel Subject: Re: Benchmarking queries Date: Mon, 21 Sep 2009 23:38:04 +0100 Message-ID: <871vlzc4ab.fsf@ossau.uklinux.net> References: <87my4rda1u.fsf@ossau.uklinux.net> <1253393643.24639.190.camel@localhost.localdomain> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: ger.gmane.org 1253572704 23699 80.91.229.12 (21 Sep 2009 22:38:24 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Mon, 21 Sep 2009 22:38:24 +0000 (UTC) Cc: Guile Development To: Mike Gran Original-X-From: guile-devel-bounces+guile-devel=m.gmane.org@gnu.org Tue Sep 22 00:38:17 2009 Return-path: Envelope-to: guile-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1MprWS-0007Hp-QK for guile-devel@m.gmane.org; Tue, 22 Sep 2009 00:38:17 +0200 Original-Received: from localhost ([127.0.0.1]:52295 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MprWS-0006jp-19 for guile-devel@m.gmane.org; Mon, 21 Sep 2009 18:38:16 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MprWO-0006gn-Gm for guile-devel@gnu.org; Mon, 21 Sep 2009 18:38:12 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MprWJ-0006gb-RZ for guile-devel@gnu.org; Mon, 21 Sep 2009 18:38:11 -0400 Original-Received: from [199.232.76.173] (port=49680 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MprWJ-0006gY-Nb for guile-devel@gnu.org; Mon, 21 Sep 2009 18:38:07 -0400 Original-Received: from mail3.uklinux.net ([80.84.72.33]:33337) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MprWJ-00013A-Dd for guile-devel@gnu.org; Mon, 21 Sep 2009 18:38:07 -0400 Original-Received: from arudy (host86-147-112-99.range86-147.btcentralplus.com [86.147.112.99]) by mail3.uklinux.net (Postfix) with ESMTP id 4E22C1F6B61; Mon, 21 Sep 2009 23:38:06 +0100 (BST) Original-Received: from arudy (arudy [127.0.0.1]) by arudy (Postfix) with ESMTP id D03CE38021; Mon, 21 Sep 2009 23:38:04 +0100 (BST) In-Reply-To: <1253393643.24639.190.camel@localhost.localdomain> (Mike Gran's message of "Sat, 19 Sep 2009 13:54:03 -0700") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (gnu/linux) X-detected-operating-system: by monty-python.gnu.org: GNU/Linux 2.4-2.6 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:9379 Archived-At: Mike Gran writes: > On Sat, 2009-09-19 at 01:59 +0100, Neil Jerram wrote: > >> 1. The files with an Emacs "coding: latin-1" comment can only be >> compiled if I add an extra comment "coding: latin1". In other words it >> seems that Guile (=> libunistring) only understands latin1 without the >> hyphen. Is this expected, and is there anything we can do about it? > > In the string_abstraction2 branch, I'd added functionality to translate > some common EMACS names for encodings into the proper linunistring names > for encodings, but, that hasn't made its way into master. For latin-1, > the name libunistring expects is ISO-8859-1. So it was my bad for not > changing latin-1 to iso-8859-1 when I merged it from string_abstraction2 > to master. So do you mean that ;;; -*- mode: scheme; coding: iso-8859-1; -*- should work for both Emacs and Guile? In any case ;;; coding: latin1 -*- mode: scheme; coding: latin-1; -*- doesn't seem so bad, so I think I'll commit for the time being with this. > I haven't put the Emacs aliases into master yet because I want that list > to be in scheme code in ice-9 instead of in C code. I haven't really > thought through the details of how that should be done. No problem; thanks for the explanation! Neil