From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Lennart Borgman Newsgroups: gmane.emacs.devel Subject: Re: Function for deleting a key binding in a sparse keymap Date: Mon, 12 Dec 2005 18:02:25 +0100 Message-ID: <439DAD21.6000802@student.lu.se> References: <3cc04a73cc1b1a.3cc1b1a3cc04a7@net.lu.se> <43987D21.4070200@student.lu.se> <4398C8F2.8060301@student.lu.se> <4399E538.2080909@student.lu.se> <439B688C.1090207@student.lu.se> <439CD53C.1070500@student.lu.se> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1134420046 12599 80.91.229.2 (12 Dec 2005 20:40:46 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 12 Dec 2005 20:40:46 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Dec 12 21:40:44 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1EluQD-0007nU-UZ for ged-emacs-devel@m.gmane.org; Mon, 12 Dec 2005 21:37:22 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1EluQj-0003JB-3t for ged-emacs-devel@m.gmane.org; Mon, 12 Dec 2005 15:37:53 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1ElroN-0007xy-G1 for emacs-devel@gnu.org; Mon, 12 Dec 2005 12:50:07 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1ElrZM-0001zI-FU for emacs-devel@gnu.org; Mon, 12 Dec 2005 12:34:37 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Elr50-00079t-S3 for emacs-devel@gnu.org; Mon, 12 Dec 2005 12:03:16 -0500 Original-Received: from [81.228.8.164] (helo=pne-smtpout2-sn2.hy.skanova.net) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Elr6k-0004FV-JA for emacs-devel@gnu.org; Mon, 12 Dec 2005 12:05:02 -0500 Original-Received: from [192.168.123.121] (83.249.218.244) by pne-smtpout2-sn2.hy.skanova.net (7.2.060.1) id 43960D0D001AAD79; Mon, 12 Dec 2005 18:02:25 +0100 User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en Original-To: Stefan Monnier In-Reply-To: X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:47556 Archived-At: Stefan Monnier wrote: >BTW, the special-event-map should be moved elsewhere, since it's applied not >to event-sequences but to single events, during read-key-sequence (IIRC). >I.e. just like function-key-map and key-translation-map, it's >used differently. > > Without looking at the code I would then guess it is applied after extra-keyboard-modifiers, keyboard-translate-table and meta-prefix-char, but before function-key-map. Could you perhaps tell exactly where since you seem to have looked in the code?