From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matt Lundin Subject: org-toggle-checkbox bug Date: Thu, 24 Feb 2011 18:52:50 -0500 Message-ID: <87lj15dm7h.fsf@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=58594 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PskzO-0003z3-9E for emacs-orgmode@gnu.org; Thu, 24 Feb 2011 18:52:55 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PskzN-0006t0-1Q for emacs-orgmode@gnu.org; Thu, 24 Feb 2011 18:52:54 -0500 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:54084) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PskzM-0006sv-PC for emacs-orgmode@gnu.org; Thu, 24 Feb 2011 18:52:52 -0500 Received: from compute1.internal (compute1.nyi.mail.srv.osa [10.202.2.41]) by gateway1.messagingengine.com (Postfix) with ESMTP id E902F208BC for ; Thu, 24 Feb 2011 18:52:51 -0500 (EST) Received: from archeee (67-197-63-212.rh2.dyn.cm.comporium.net [67.197.63.212]) by mail.messagingengine.com (Postfix) with ESMTPSA id A8BF040290F for ; Thu, 24 Feb 2011 18:52:51 -0500 (EST) 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: Org Mode According to the docstring of org-toggle-checkbox, the function can be called on headlines: ,---- | If the cursor is in a headline, apply this to all checkbox items | in the text below the heading, taking as reference the first item | in subtree, ignoring drawers. `---- When I call org-toggle-checkbox on the following entry... --8<---------------cut here---------------start------------->8--- * Test - [ ] Now - [ ] Not now - [ ] Later - Not yet - Never --8<---------------cut here---------------end--------------->8--- ...I get the following results... --8<---------------cut here---------------start------------->8--- * Test - [ ] Now - [X] Not now - [X] Later - Not yet - Never --8<---------------cut here---------------end--------------->8--- Then if I call org-toggle-checkbox on the headline again, nothing happens. The two boxes remain checked. Best, Matt