From mboxrd@z Thu Jan 1 00:00:00 1970 From: Levin Subject: Re: Release: Org-mode 5.09 Date: Tue, 18 Sep 2007 17:27:44 +0800 Message-ID: <200709181727.45145.zslevin@gmail.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset="gb18030" Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IXZOw-0002FF-3x for emacs-orgmode@gnu.org; Tue, 18 Sep 2007 05:29:50 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IXZOu-0002Ez-Po for emacs-orgmode@gnu.org; Tue, 18 Sep 2007 05:29:49 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IXZOu-0002Ep-HK for emacs-orgmode@gnu.org; Tue, 18 Sep 2007 05:29:48 -0400 Received: from rv-out-0910.google.com ([209.85.198.190]) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1IXZOt-0001Re-71 for emacs-orgmode@gnu.org; Tue, 18 Sep 2007 05:29:47 -0400 Received: by rv-out-0910.google.com with SMTP id c27so1544002rvf for ; Tue, 18 Sep 2007 02:29:46 -0700 (PDT) In-Reply-To: Content-Disposition: inline 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: Carsten Dominik Cc: emacs-orgmode@gnu.org There's a small bug with org-fast-todo-selection, pressing " " will trigger an error instead of clearing the todo state. Is this small fix ok? -Levin diff --git a/lisp/org/org.el b/lisp/org/org.el index a5567f5..edb5cb2 100644 --- a/lisp/org/org.el +++ b/lisp/org/org.el @@ -13058,7 +13058,7 @@ Returns the new TODO keyword, or nil if no state change should occur." ((or (= c ?\C-g) (and (= c ?q) (not (rassoc c fulltable)))) (setq quit-flag t)) - ((= c ?\ ) 'none) + ((= c ?\ ) nil) ((setq e (rassoc c fulltable) tg (car e)) tg) (t (setq quit-flag t))))))