emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Orgmode] Release: Org-mode 5.09


From: Levin
Subject: Re: [Orgmode] Release: Org-mode 5.09
Date: Tue, 18 Sep 2007 17:27:44 +0800
User-agent: KMail/1.9.7

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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]