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))))))


_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to