From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?utf-8?Q?Johan_Bockg=C3=A5rd?= Newsgroups: gmane.emacs.devel Subject: Re: /srv/bzr/emacs/trunk r106174: * lisp/progmodes/octave-inf.el (inferior-octave-mode-map): Fix C-c C-h binding. Date: Tue, 25 Oct 2011 21:10:53 +0200 Message-ID: <87vcrcubsy.fsf@gnu.org> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: dough.gmane.org 1319578049 22835 80.91.229.12 (25 Oct 2011 21:27:29 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Tue, 25 Oct 2011 21:27:29 +0000 (UTC) Cc: Stefan Monnier To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Tue Oct 25 23:27:23 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 1RIoWp-0000vT-P0 for ged-emacs-devel@m.gmane.org; Tue, 25 Oct 2011 23:27:23 +0200 Original-Received: from localhost ([::1]:59315 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RIoWo-0007Fl-D8 for ged-emacs-devel@m.gmane.org; Tue, 25 Oct 2011 17:27:22 -0400 Original-Received: from eggs.gnu.org ([140.186.70.92]:49685) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RImeW-0007JV-Bg for emacs-devel@gnu.org; Tue, 25 Oct 2011 15:27:13 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RImeV-0003RR-Gg for emacs-devel@gnu.org; Tue, 25 Oct 2011 15:27:12 -0400 Original-Received: from smtprelay-h12.telenor.se ([62.127.194.5]:40728) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RImeV-0003Qz-BX for emacs-devel@gnu.org; Tue, 25 Oct 2011 15:27:11 -0400 Original-Received: from iph1.telenor.se (iph1.telenor.se [195.54.127.132]) by smtprelay-h12.telenor.se (Postfix) with ESMTP id 55400E8879; Tue, 25 Oct 2011 21:11:16 +0200 (CEST) X-SMTPAUTH-B2: [bocjoh] X-SENDER-IP: [85.228.201.190] X-LISTENER: [smtp.bredband.net] X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: AivzACQJp05V5Mm+PGdsb2JhbABDgjGHC5BfjXCBDxkBAQEBNzKBbgEBBVYjEAshGgsPAQQYAQwKLYgCtHGIVgSlag X-Suspected-Spam: Yes X-IronPort-AV: E=Sophos;i="4.69,405,1315173600"; d="scan'208";a="502580879" Original-Received: from c-bec9e455.04-211-6c6b701.cust.bredbandsbolaget.se (HELO muon.localdomain) ([85.228.201.190]) by iph1.telenor.se with ESMTP; 25 Oct 2011 21:11:16 +0200 Original-Received: by muon.localdomain (Postfix, from userid 1000) id 826AB4842A5; Tue, 25 Oct 2011 21:10:54 +0200 (CEST) Mail-Copies-To: never In-Reply-To: (Stefan Monnier's message of "Sun, 23 Oct 2011 22:56:59 -0400") User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.90 (gnu/linux) X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 62.127.194.5 X-Mailman-Approved-At: Tue, 25 Oct 2011 17:27:20 -0400 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:145533 Archived-At: Stefan Monnier writes: > - (define-key map "\C-c\C-h" 'octave-help) > + (define-key map "\C-c\C-h" 'info-lookup-symbol) I think the C-c C-h binding should be removed instead. * Don't bind `C-h' following any prefix character (including `C-c'). If you don't bind `C-h', it is automatically available as a help character for listing the subcommands of the prefix character. -- (info "(elisp) Key Binding Conventions") (info-lookup-symbol already has a global binding.)