From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: Key map translations Date: Thu, 14 Apr 2011 22:35:05 -0300 Message-ID: References: <4DA3AB97.4070805@gmail.com> <4DA50378.3060704@gmail.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1302833222 15746 80.91.229.12 (15 Apr 2011 02:07:02 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Fri, 15 Apr 2011 02:07:02 +0000 (UTC) Cc: Lennart Borgman , emacs-devel@gnu.org To: Christoph Scholtes Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 15 04:06:58 2011 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([140.186.70.17]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1QAYQy-0005zU-0U for ged-emacs-devel@m.gmane.org; Fri, 15 Apr 2011 04:06:56 +0200 Original-Received: from localhost ([::1]:43760 helo=lists2.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAYQx-0007cI-Dl for ged-emacs-devel@m.gmane.org; Thu, 14 Apr 2011 22:06:55 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:43934) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAYQt-0007Wj-Up for emacs-devel@gnu.org; Thu, 14 Apr 2011 22:06:52 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QAYQt-00065x-CL for emacs-devel@gnu.org; Thu, 14 Apr 2011 22:06:51 -0400 Original-Received: from fencepost.gnu.org ([140.186.70.10]:44589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QAYQt-00065t-Ag for emacs-devel@gnu.org; Thu, 14 Apr 2011 22:06:51 -0400 Original-Received: from 213-159-126-200.fibertel.com.ar ([200.126.159.213]:45885 helo=ceviche.home) by fencepost.gnu.org with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1QAYQs-0003zg-QJ; Thu, 14 Apr 2011 22:06:51 -0400 Original-Received: by ceviche.home (Postfix, from userid 20848) id 3D1AA668C7; Thu, 14 Apr 2011 23:06:46 -0300 (ART) In-Reply-To: <4DA50378.3060704@gmail.com> (Christoph Scholtes's message of "Tue, 12 Apr 2011 19:59:20 -0600") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 140.186.70.10 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:138491 Archived-At: > However, I still wonder if there is a way to see all the active > translations. They must be defined somewhere? Some of the translations (e.g. the mapping from to , the mapping from S- to , the mapping from to , etc...) are hardcoded in the C code of read-key-sequence. The rest is in input-decode-map, function-key-map, key-translation-map (and a few more, see the Elisp manual). Stefan