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: [Emacs-diffs] master 43cc5d8: Make `q' etc work in image mode again Date: Sun, 24 Apr 2016 15:45:36 -0400 Message-ID: References: <20160424142240.28121.22307@vcs.savannah.gnu.org> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1461527182 23394 80.91.229.3 (24 Apr 2016 19:46:22 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Sun, 24 Apr 2016 19:46:22 +0000 (UTC) Cc: emacs-devel@gnu.org To: Lars Magne Ingebrigtsen Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Apr 24 21:46:10 2016 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1auPyq-0000vX-Ps for ged-emacs-devel@m.gmane.org; Sun, 24 Apr 2016 21:46:08 +0200 Original-Received: from localhost ([::1]:56418 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auPym-0004bQ-Ub for ged-emacs-devel@m.gmane.org; Sun, 24 Apr 2016 15:46:04 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:33773) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auPyQ-0004Xm-JB for emacs-devel@gnu.org; Sun, 24 Apr 2016 15:45:43 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1auPyN-00016D-Do for emacs-devel@gnu.org; Sun, 24 Apr 2016 15:45:42 -0400 Original-Received: from pruche.dit.umontreal.ca ([132.204.246.22]:60255) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1auPyN-000169-63 for emacs-devel@gnu.org; Sun, 24 Apr 2016 15:45:39 -0400 Original-Received: from fmsmemgm.homelinux.net (lechon.iro.umontreal.ca [132.204.27.242]) by pruche.dit.umontreal.ca (8.14.7/8.14.1) with ESMTP id u3OJjaYO009096; Sun, 24 Apr 2016 15:45:36 -0400 Original-Received: by fmsmemgm.homelinux.net (Postfix, from userid 20848) id 63557AE971; Sun, 24 Apr 2016 15:45:36 -0400 (EDT) In-Reply-To: (Lars Magne Ingebrigtsen's message of "Sun, 24 Apr 2016 17:22:45 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1.50 (gnu/linux) X-NAI-Spam-Flag: NO X-NAI-Spam-Threshold: 5 X-NAI-Spam-Score: 0 X-NAI-Spam-Rules: 1 Rules triggered RV5652=0 X-NAI-Spam-Version: 2.3.0.9418 : core <5652> : inlines <4712> : streams <1624684> : uri <2195652> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 132.204.246.22 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.21 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" Xref: news.gmane.org gmane.emacs.devel:203276 Archived-At: > Ah, that's not how you're suppose to call that function, because if you > modify the map afterwards, they ... happen in the first of the composed > maps? Kinda confusing. Yes, it's a quirk that's hard to avoid because key lookup can return such a composed keymap, and define-key uses that same key lookup after which it needs to find the actual submap to modify. Stefan