From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Thomas Gehrlein Newsgroups: gmane.emacs.help Subject: Re: German umlaut problems after moving from Windows to Linux Date: Mon, 01 Mar 2004 08:02:25 +0100 Organization: T-Online Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1078125473 5634 80.91.224.253 (1 Mar 2004 07:17:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 1 Mar 2004 07:17:53 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Mar 01 08:17:44 2004 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AxhgO-0004dx-00 for ; Mon, 01 Mar 2004 08:17:44 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.30) id 1Axhef-0002PD-Uv for geh-help-gnu-emacs@m.gmane.org; Mon, 01 Mar 2004 02:15:57 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!colt.net!peernews3.colt.net!newsfeed00.sul.t-online.de!newsmm00.sul.t-online.de!t-online.de!news.t-online.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 28 Original-X-Trace: news.t-online.com 1078125039 04 7449 eDAeGCJlxU7FjZz 040301 07:10:39 Original-X-Complaints-To: usenet-abuse@t-online.de X-ID: ZKMoNsZrYev30ZY9jaPwTVqp5gn-lRRkN9dLvMOuikCB1ozleB9tc0 User-Agent: Gnus/5.1002 (Gnus v5.10.2) Emacs/21.3 (gnu/linux) Cancel-Lock: sha1:Nx+qajZl8uPdH4AsXP/fB497TXg= Original-Xref: shelby.stanford.edu gnu.emacs.help:121390 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:17345 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:17345 Jesper Harder writes: >> ;; problems with latin-9 on Windows >> (define-coding-system-alias 'latin-9 'latin-1) >> (define-coding-system-alias 'iso-8859-15 'latin-1) >> >> I don't remember exactly, why I added the last two lines. I think >> it had to do with Gnus. > > Previous versions of Emacs didn't support Latin-9, which is probably > why you added them. Now that Emacs 21.3 does, you'll want to get rid > of the two lines. > > By the way, when you do things like that it's always a good idea to > guard it with a test, e.g. > > (unless (coding-system-p 'latin-9) > (define-coding-system-alias 'latin-9 'latin-1)) > > which makes it more future-proof. Good piece of advice. I think I'll need to go through my .emacs line by line and check for other stuff that that is OS or version specific and might cause trouble. Thank you for your help. Thomas