From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Elena Garrulo Newsgroups: gmane.emacs.help Subject: Re: Translating keys Date: Mon, 17 Oct 2005 00:07:02 +0200 Organization: Aioe.org NNTP Server Message-ID: References: Reply-To: egarrulo@muchomail.com NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1129500693 17027 80.91.229.2 (16 Oct 2005 22:11:33 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 16 Oct 2005 22:11:33 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Oct 17 00:11:31 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1ERGhy-0004iq-LZ for geh-help-gnu-emacs@m.gmane.org; Mon, 17 Oct 2005 00:10:22 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1ERGhy-0004Xz-1J for geh-help-gnu-emacs@m.gmane.org; Sun, 16 Oct 2005 18:10:22 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsfeed.stueberl.de!zen.net.uk!dedekind.zen.co.uk!213.155.197.138.MISMATCH!ilaria.aioe.org!aioe.org!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 17 Original-NNTP-Posting-Host: NEcGLQO5KCYpsbO7rgqKKw.540.domitilla.aioe.org Original-X-Complaints-To: abuse@aioe.org User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.1) Gecko/20040707 Original-Xref: shelby.stanford.edu gnu.emacs.help:134678 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:30260 Archived-At: Peter Dyballa wrote: > Have you checked c-mode-map, 'a sparse keymap used by C mode?' Thank you, now I have the "electric" behaviour. Still, I cannot remap the extended ASCII "ò" character (225 octal). Neither this: (define-key c-mode-map "ò" 'c-electric-brace) nor this: (define-key c-mode-map "\225" 'c-electric-brace) work. Standard ASCII characters do work: (define-key c-mode-map "k" 'c-electric-brace) ;; OK (define-key c-mode-map "\153" 'c-electric-brace) ;; OK