From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] Add non-ASCII characters to morse.el Date: Fri, 22 Nov 2002 18:00:01 +0100 Sender: emacs-devel-admin@gnu.org Message-ID: References: <200211201154.UAA28272@etlken.m17n.org> <200211202122.gAKLMqd23185@rum.cs.yale.edu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1037984708 19853 80.91.224.249 (22 Nov 2002 17:05:08 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Fri, 22 Nov 2002 17:05:08 +0000 (UTC) Cc: "Stefan Monnier" , Kenichi Handa , emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18FHE1-000577-00 for ; Fri, 22 Nov 2002 18:04:17 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18FHIG-0008Ev-00 for ; Fri, 22 Nov 2002 18:08:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18FHCL-00068z-00; Fri, 22 Nov 2002 12:02:33 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 18FHBo-0005hP-00 for emacs-devel@gnu.org; Fri, 22 Nov 2002 12:02:00 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 18FHA1-0004wL-00 for emacs-devel@gnu.org; Fri, 22 Nov 2002 12:00:18 -0500 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net ([217.13.230.178] helo=yxa.extundo.com) by monty-python.gnu.org with esmtp (Exim 4.10) id 18FHA0-0004t0-00 for emacs-devel@gnu.org; Fri, 22 Nov 2002 12:00:08 -0500 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.6/8.12.6) with ESMTP id gAMH025h003662 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 22 Nov 2002 18:00:03 +0100 Original-To: Karl Eichwalder Mail-Copies-To: nobody X-Hashcash: 0:021122:keichwa@gmx.net:5b06fe74207de7bd X-Hashcash: 0:021122:monnier@rum.cs.yale.edu:138030d252498b31 X-Hashcash: 0:021122:handa@m17n.org:0bc5d1f79b521e63 X-Hashcash: 0:021122:emacs-devel@gnu.org:65a7c20ecb339c9d In-Reply-To: (Karl Eichwalder's message of "Fri, 22 Nov 2002 17:11:39 +0100") User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i686-pc-linux-gnu) X-MIME-Autoconverted: from 8bit to quoted-printable by yxa.extundo.com id gAMH025h003662 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9622 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9622 Karl Eichwalder writes: > Simon Josefsson writes: > >> +;;; morse.el --- convert text to morse code and back -*- = coding: utf-8 -*- >> =20 > > [...] > >> + ;; Non-ASCII >> + ("=C4" . ".-.-") >> + ("=C1" . ".--.-") > > Probably a Gnus problem: your patch were converted to iso-8859-1 -- I > guess you forgot to protect the diff using these "mml" tags and > Emacs/Gnus happily unified UTF-8 to the default encoding. Yup. It is a feature, actually, since more people support ISO-8859-1 than UTF-8, so if UTF-8 can be expressed as ISO-8859-1 (which was the case here, I believe) Gnus downgrades it. I was happy to see that it actually works in practice. The commited file should be in UTF-8 though.