From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Artur Malabarba Newsgroups: gmane.emacs.devel Subject: keys with meta-prefix cannot be longer than two chars? Date: Wed, 21 Oct 2015 16:07:37 +0100 Message-ID: Reply-To: bruce.connor.am@gmail.com NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: ger.gmane.org 1445440084 6551 80.91.229.3 (21 Oct 2015 15:08:04 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 21 Oct 2015 15:08:04 +0000 (UTC) To: emacs-devel Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Oct 21 17:07:56 2015 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 1ZouzW-0005T4-Is for ged-emacs-devel@m.gmane.org; Wed, 21 Oct 2015 17:07:50 +0200 Original-Received: from localhost ([::1]:52035 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZouzV-0006et-In for ged-emacs-devel@m.gmane.org; Wed, 21 Oct 2015 11:07:49 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:43222) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZouzO-0006eR-DR for emacs-devel@gnu.org; Wed, 21 Oct 2015 11:07:47 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZouzK-0002cr-Gx for emacs-devel@gnu.org; Wed, 21 Oct 2015 11:07:42 -0400 Original-Received: from mail-lb0-x230.google.com ([2a00:1450:4010:c04::230]:35559) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZouzK-0002cn-3X for emacs-devel@gnu.org; Wed, 21 Oct 2015 11:07:38 -0400 Original-Received: by lbbes7 with SMTP id es7so40737119lbb.2 for ; Wed, 21 Oct 2015 08:07:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:reply-to:sender:date:message-id:subject:from:to :content-type; bh=4XfPTRcO1qlIqarqrNN3LxR37Xx/620V7tFbwCxWIXw=; b=oGA75cc9/cccWCgr902vg7PKXqn+0po0+HwNpzaDxW2tM7s/tJVlWwsItb+VFoyn/G QcvyV3LqzmWzR/1Qe06iKgRvzg5rFZdnq6ulpWSS/fmkFSJsj6oO+vl28SxhFpxbECJ1 D94R9XkckNvBfkcuoFuYmqFpqBHUorUgy1OWY+h9bvXgdlvqgsjDAYd2hFYRtl3kw5jz FPNmT7lBssjKHYZ32vz2M7X6a5MfWZehlV3infY6BlOoueEp54SID3Y+dyqgCZr6gqEB VX4J1cW1beCTf6nKXJ1bwOufWm3fvqvbJDcY9O2/V9eX5mpuWdgTsZa+2HUiblXkxajj 0cxA== X-Received: by 10.112.54.169 with SMTP id k9mr5520281lbp.95.1445440057336; Wed, 21 Oct 2015 08:07:37 -0700 (PDT) Original-Received: by 10.25.22.197 with HTTP; Wed, 21 Oct 2015 08:07:37 -0700 (PDT) X-Google-Sender-Auth: UJlYbGuncA0n4jhyYlh_pJx3eKE X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2a00:1450:4010:c04::230 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:192290 Archived-At: The following is quoted from the header comments in isearch.el ;; The key bindings active within isearch-mode are defined below in ;; `isearch-mode-map' which is given bindings close to the default ;; characters of the original isearch.el. With `isearch-mode', ;; however, you can bind multi-character keys and it should be easier ;; to add new commands. One bug though: keys with meta-prefix cannot ;; be longer than two chars. That last sentence is intriguing. I tested with this snippet and it didn't hold true for me. (define-key isearch-mode-map "\M-6lo" (lambda () (interactive) (message "HI"))) Does anyone know its origin and may I delete it?