From mboxrd@z Thu Jan 1 00:00:00 1970 From: Carsten Dominik Subject: Re: Bug in #+SEQ_TODO: config? Date: Thu, 7 Feb 2008 08:17:13 +0100 Message-ID: <77DDAA32-1735-4159-8408-D4EF3B87D81F@science.uva.nl> References: Mime-Version: 1.0 (Apple Message framework v915) Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1JN25t-0003DG-S8 for emacs-orgmode@gnu.org; Thu, 07 Feb 2008 03:26:53 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1JN25s-0003Cd-Sf for emacs-orgmode@gnu.org; Thu, 07 Feb 2008 03:26:52 -0500 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JN25s-0003CN-9A for emacs-orgmode@gnu.org; Thu, 07 Feb 2008 03:26:52 -0500 Received: from mx20.gnu.org ([199.232.41.8]) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1JN25r-0008H8-Vo for emacs-orgmode@gnu.org; Thu, 07 Feb 2008 03:26:52 -0500 Received: from ug-out-1314.google.com ([66.249.92.174]) by mx20.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1JN25p-0003jX-BZ for emacs-orgmode@gnu.org; Thu, 07 Feb 2008 03:26:49 -0500 Received: by ug-out-1314.google.com with SMTP id a2so652051ugf.48 for ; Thu, 07 Feb 2008 00:26:49 -0800 (PST) In-Reply-To: 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: Rainer Stengele Cc: emacs-orgmode@gnu.org On Feb 7, 2008, at 12:46 AM, Rainer Stengele wrote: > Hi all, > > I think i found a bug/unwanted behaviour: > > 1. Having this config at the top of an org file: > > #+SEQ_TODO: TODO INARBEIT WARTEN| DONE CANCELED DELEGATED > > I do get all (!) DONE entries in any agenda call. although I > configured to not see any of them ((org-agenda-skip-scheduled-if- > done t) etc.). > > > 2. Having this config at the top of an org file: > > #+SEQ_TODO: TODO INARBEIT WARTEN | DONE CANCELED DELEGATED > > > I get correct agenda behaviour - all DONE items disappear. > The only difference is the space after "WARTEN"! > That was not quite easy to track down ... > > Is this intended? Well, you told Org-mode to use "WARTEN|" as a keyword, and you did not have a separator between TODO and DONE states in that line. Therefore, Org- mode thinks that only "DELEGATED" is a DONE state. This is the default behavior, use the last keyword as "done" state. It is documented that way. - Carsten