From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Mark H Weaver Newsgroups: gmane.lisp.guile.user Subject: Re: displaying UTF8 characters in and out of a script (guile 2.0.5) Date: Sun, 13 Jan 2013 13:12:21 -0500 Message-ID: <874nilrlyy.fsf@tines.lan> References: <1355685754.7015.140661166743981.0F8ECFCA@webmail.messagingengine.com> <20121216180452.0820b094@capac> <871uep4u3s.fsf@tines.lan> <87vcb1uz0l.fsf@pobox.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1358100788 28346 80.91.229.3 (13 Jan 2013 18:13:08 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 13 Jan 2013 18:13:08 +0000 (UTC) Cc: guile-user@gnu.org, David Pirotte To: Andy Wingo Original-X-From: guile-user-bounces+guile-user=m.gmane.org@gnu.org Sun Jan 13 19:13:25 2013 Return-path: Envelope-to: guile-user@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1TuS3a-0004xS-Np for guile-user@m.gmane.org; Sun, 13 Jan 2013 19:13:18 +0100 Original-Received: from localhost ([::1]:41426 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TuS3K-0005jP-7J for guile-user@m.gmane.org; Sun, 13 Jan 2013 13:13:02 -0500 Original-Received: from eggs.gnu.org ([208.118.235.92]:35786) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TuS3B-0005jJ-II for guile-user@gnu.org; Sun, 13 Jan 2013 13:12:58 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TuS37-00080G-AD for guile-user@gnu.org; Sun, 13 Jan 2013 13:12:53 -0500 Original-Received: from world.peace.net ([96.39.62.75]:58674) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TuS37-0007yH-5n for guile-user@gnu.org; Sun, 13 Jan 2013 13:12:49 -0500 Original-Received: from 209-6-92-20.c3-0.smr-ubr1.sbo-smr.ma.cable.rcn.com ([209.6.92.20] helo=tines.lan) by world.peace.net with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72) (envelope-from ) id 1TuS2q-0000Yy-5f; Sun, 13 Jan 2013 13:12:32 -0500 In-Reply-To: <87vcb1uz0l.fsf@pobox.com> (Andy Wingo's message of "Sun, 13 Jan 2013 12:02:18 +0100") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 96.39.62.75 X-BeenThere: guile-user@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: General Guile related discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guile-user-bounces+guile-user=m.gmane.org@gnu.org Original-Sender: guile-user-bounces+guile-user=m.gmane.org@gnu.org Xref: news.gmane.org gmane.lisp.guile.user:9852 Archived-At: Andy Wingo writes: > On Sun 16 Dec 2012 21:31, Mark H Weaver writes: > >> Also, since your script contains non-ASCII characters, you should place >> a coding declaration in the file so that Guile will know what encoding >> to use when reading it. If your script is in UTF-8, then put this in >> the first 500 characters of the file: >> >> ;;; coding: utf-8 > > I think the default is utf-8 now, correct? Indeed, you are correct. I did not know that! Thanks, Mark