From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Nicolas Richard Newsgroups: gmane.emacs.help Subject: Re: Error "Key sequence starts with non-prefix key" Date: Wed, 04 Jun 2014 14:13:09 +0200 Message-ID: <877g4whnze.fsf@geodiff-mac3.ulb.ac.be> References: <87lhtcc2ng.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: ger.gmane.org 1401883974 14127 80.91.229.3 (4 Jun 2014 12:12:54 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 4 Jun 2014 12:12:54 +0000 (UTC) Cc: help-gnu-emacs@gnu.org To: Thorsten Jolitz Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Jun 04 14:12:46 2014 Return-path: Envelope-to: geh-help-gnu-emacs@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 1WsA3h-0000rF-Rl for geh-help-gnu-emacs@m.gmane.org; Wed, 04 Jun 2014 14:12:45 +0200 Original-Received: from localhost ([::1]:60331 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsA3h-00020l-25 for geh-help-gnu-emacs@m.gmane.org; Wed, 04 Jun 2014 08:12:45 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:42288) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsA3N-0001vt-Su for help-gnu-emacs@gnu.org; Wed, 04 Jun 2014 08:12:34 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WsA3F-0002kt-Fv for help-gnu-emacs@gnu.org; Wed, 04 Jun 2014 08:12:25 -0400 Original-Received: from mxin.ulb.ac.be ([164.15.128.112]:28930) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WsA3F-0002kf-9v for help-gnu-emacs@gnu.org; Wed, 04 Jun 2014 08:12:17 -0400 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AhgKAOIMj1OkD4Xx/2dsb2JhbABZrnMBBAaYJwGBH3SCJQEBBAF5BQsLDhMlDwEEDTwTiC0BAwkIrhidGAFKDYYIF4VVggOEZIIWB4RAAQOYFYhShmiFdoM6Ow Original-Received: from mathsrv4.ulb.ac.be (HELO geodiff-mac3.ulb.ac.be) ([164.15.133.241]) by smtp.ulb.ac.be with ESMTP; 04 Jun 2014 14:11:54 +0200 In-Reply-To: <87lhtcc2ng.fsf@gmail.com> (Thorsten Jolitz's message of "Wed, 04 Jun 2014 13:52:51 +0200") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3.91 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 164.15.128.112 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:98009 Archived-At: Thorsten Jolitz writes: > (let ((map (lookup-key outline-minor-mode-map outline-minor-mode-prefix))) > (define-key map "\C-a" 'show-all) > (define-key map "\C-\M-l" 'outshine-insert-all-links) > (define-key map (kbd "C-v C-a") 'outshine-babel-sha1-hash) [...] > I get an error because of the last line (no matter if I use the `kdb' > macro or just write "\C-v\C-a"): It means C-v is already defined. Just undefine it before you try to make it into a prefix: (define-key map (kbd "C-v") nil) -- Nico.