From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Juanma Barranquero" Newsgroups: gmane.emacs.devel Subject: Re: A simple implementation of context-sensitive keys Date: Wed, 10 Sep 2008 17:32:59 +0200 Message-ID: References: <87y72079mg.fsf@thinkpad.tsdh.de> <87ljy012g7.fsf@catnip.gol.com> NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1221061262 8600 80.91.229.12 (10 Sep 2008 15:41:02 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 10 Sep 2008 15:41:02 +0000 (UTC) Cc: emacs-devel@gnu.org To: "Sean O'Rourke" Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Sep 10 17:41:55 2008 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1KdRpA-0003Y0-K4 for ged-emacs-devel@m.gmane.org; Wed, 10 Sep 2008 17:41:44 +0200 Original-Received: from localhost ([127.0.0.1]:50560 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KdRoA-0003Vg-IW for ged-emacs-devel@m.gmane.org; Wed, 10 Sep 2008 11:40:42 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1KdRgl-00076c-At for emacs-devel@gnu.org; Wed, 10 Sep 2008 11:33:03 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1KdRgj-00076I-HI for emacs-devel@gnu.org; Wed, 10 Sep 2008 11:33:02 -0400 Original-Received: from [199.232.76.173] (port=47569 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1KdRgj-00076D-6D for emacs-devel@gnu.org; Wed, 10 Sep 2008 11:33:01 -0400 Original-Received: from mail-gx0-f12.google.com ([209.85.217.12]:65116) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1KdRgi-0004nC-LR for emacs-devel@gnu.org; Wed, 10 Sep 2008 11:33:00 -0400 Original-Received: by gxk5 with SMTP id 5so13745600gxk.18 for ; Wed, 10 Sep 2008 08:33:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=JLGMIJ3YY4Q/Kjg5Fl5OymV0gp1INaD3KQqZTgdLpFE=; b=b5iewZbQsWf0hpnQXAzzRGcRaAcabFtoSGUvaqSZAH2VemJB8pTKEtFkKClUSgLJhO HVi5yfVNf/tWm8QEYSlqq3mHHpUlcyKjLYQoN11AjtE+WKYUH4aDkOAvEIinkGf5xsMb su9Ey023xCh4e/a2MgS3Rj9NjxaQ6I6Kbp7fY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=hbgKqz4q2DNgxBfb0xNxlVyUr86+FWqpapwuKdtOLj+B73RY7gts9JWmzFgPN+PfGl 9fUwK4KqTeFVzdq0lRzTCtYAJvYht/IardBbNqHkcmSTdENeaw00J9Fj++CIChe2rByf AH7UqLMQ7ExcnnLx/2gYPPPFJSpgC+xia2CSM= Original-Received: by 10.100.190.15 with SMTP id n15mr1749398anf.15.1221060780003; Wed, 10 Sep 2008 08:33:00 -0700 (PDT) Original-Received: by 10.100.13.13 with HTTP; Wed, 10 Sep 2008 08:32:59 -0700 (PDT) In-Reply-To: Content-Disposition: inline X-detected-kernel: by monty-python.gnu.org: Linux 2.6 (newer, 2) 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:103771 Archived-At: On Wed, Sep 10, 2008 at 17:17, Sean O'Rourke wrote: > My guess is that this is the text property used by e.g. > "customize" to create buttons and links. Ah. Properties that contain (point to) keymaps. I was misreading that as "properties of the keymaps", as in "symbol properties" and "text properties" :) Juanma