From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: [Bug] M-S Ret keybinding translated to M-Ret Date: Tue, 06 Feb 2018 14:54:14 -0600 Message-ID: <87shad3kll.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:51819) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ejAFw-0007m0-O0 for emacs-orgmode@gnu.org; Tue, 06 Feb 2018 15:54:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ejAFt-000325-JP for emacs-orgmode@gnu.org; Tue, 06 Feb 2018 15:54:20 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:34609) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1ejAFt-000300-Cj for emacs-orgmode@gnu.org; Tue, 06 Feb 2018 15:54:17 -0500 Received: from archpad (wcnat-96-20.wheaton.edu [209.147.96.20]) by mail.messagingengine.com (Postfix) with ESMTPA id BD1547E4B2 for ; Tue, 6 Feb 2018 15:54:14 -0500 (EST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: Org Mode I discovered that when trying to insert a new item with a checkbox using M-S Return (org-insert-todo-heading), the keybinding is "translated" to M-Return (org-meta-return). As a result, all I get is simple list item without a checkbox. M-x describe-key [Ret] M-S Ret ...shows the following... --8<---------------cut here---------------start------------->8--- M-RET (translated from ) runs the command org-meta-return (found in org-mode-map), which is an interactive compiled Lisp function in =E2=80=98org.el=E2=80=99. It is bound to M-RET, C-c C-x RET. =20 (org-meta-return &optional ARG) --8<---------------cut here---------------end--------------->8--- A git bisect traced the source of this problem to the following commit: --8<---------------cut here---------------start------------->8--- 6965098a5357b09575a1119074545eb708cf5944 is the first bad commit commit 6965098a5357b09575a1119074545eb708cf5944 Author: Nicolas Goaziou Date: Mon Jan 15 16:13:37 2018 +0100 Use a single keybinding representation * lisp/org.el (org-replace-disputed-keys): Fix docstring. Use `kbd' macro everywhere. Also add missing "ESC" equivalents for "M-" bindings. --8<---------------cut here---------------end--------------->8--- Thanks, Matt