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: Binding non-ASCII keys in .emacs not working Date: Sun, 11 May 2003 20:10:37 +0200 Organization: http://purl.org/harder/ Sender: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: <878ytdpk3m.fsf@bach.composers> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1052676936 23209 80.91.224.249 (11 May 2003 18:15:36 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 11 May 2003 18:15:36 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Sun May 11 20:15:34 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 19EvME-000622-00 for ; Sun, 11 May 2003 20:15:34 +0200 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10.13) id 19EvLy-0000hw-02 for gnu-help-gnu-emacs@m.gmane.org; Sun, 11 May 2003 14:15:18 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!newsfeed.icl.net!newsfeed.fjserv.net!colt.net!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-Help: List-Post: List-Subscribe: , List-Archive: List-Unsubscribe: , Errors-To: help-gnu-emacs-bounces+gnu-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:9571 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:9571 "Eli Zaretskii" writes: >> What do I do? I miss delete-line for deleting lines when I have >> something in the kill ring I don't want to push further back. > > The Emacs manual has 2 index entries about related issues, "non-ASCII > characters in .emacs" and "non-ASCII keys, binding". Does the text > where those entries point help to fix the problem? No, not for me. The problem is that Emacs 21.3 (and CVS Emacs) don't distinguish between `C-æ' and `æ'. Emacs 21.2 did that. In 21.2: (read-key-sequence "") Input: æ => [230] (read-key-sequence "") Input: C-æ => [134] In 21.3: (read-key-sequence "") Input: æ => [2278] (read-key-sequence "") Input: C-æ => [2278] This means that I can bind `æ', but not `C-æ'.