From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Baumann Subject: bug: keymap interference with calc Date: Tue, 27 Mar 2007 07:39:47 +0200 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HW4S2-0006ZI-QK for emacs-orgmode@gnu.org; Tue, 27 Mar 2007 01:42:34 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HW4Rz-0006WD-7C for emacs-orgmode@gnu.org; Tue, 27 Mar 2007 01:42:34 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HW4Rz-0006WA-3i for emacs-orgmode@gnu.org; Tue, 27 Mar 2007 00:42:31 -0500 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HW4Pd-0001xF-Hq for emacs-orgmode@gnu.org; Tue, 27 Mar 2007 01:40:06 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1HW4PS-0005tg-Rp for emacs-orgmode@gnu.org; Tue, 27 Mar 2007 07:39:54 +0200 Received: from mafu.ws.chemie.tu-muenchen.de ([129.187.76.2]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Mar 2007 07:39:54 +0200 Received: from dtbaumann by mafu.ws.chemie.tu-muenchen.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 27 Mar 2007 07:39:54 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi Carsten and others there seems to be an interference with the way org-mode captures DEL. This happens with emacs 22.0.96 strated with emacs -Q Load org, visit an org-buffer, load and start calc, in the calc buffer backspace is bound to DEL (translated from ) runs the command delete-backward-char which is an interactive built-in function in `C source code'. It is bound to DEL. (delete-backward-char n &optional killflag) ... which causes an error in calc because there DEL should be bound to DEL (translated from ) runs the command calc-pop which is an interactive compiled Lisp function in `calc.el'. It is bound to DEL, C-d. (calc-pop n) ... If calc is started _before_ org-mode everything is ok. This behaviour is present in all versions since 4.57 and also in emacs-cvs. Best wishes Thomas