From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.help Subject: Re: German umlaut problems after moving from Windows to Linux Date: Sun, 29 Feb 2004 14:29:45 +0100 Organization: http://purl.org/harder/ 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 1078062444 30813 80.91.224.253 (29 Feb 2004 13:47:24 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 29 Feb 2004 13:47:24 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Sun Feb 29 14:47:21 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 1AxRHn-0003Vd-00 for ; Sun, 29 Feb 2004 14:47:20 +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 1AxRHc-0006MZ-If for geh-help-gnu-emacs@m.gmane.org; Sun, 29 Feb 2004 08:47:04 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!not-for-mail Original-Newsgroups: gnu.emacs.help X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; 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:17317 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:17317 Thomas Gehrlein 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.