From mboxrd@z Thu Jan 1 00:00:00 1970 From: david@adboyd.com (J. David Boyd) Subject: Re: Problem with archiving Date: Sat, 14 Jul 2007 12:31:47 -0400 Message-ID: <87wsx3q74c.fsf@adboyd.com> References: <87ps2xqyqh.fsf@adboyd.com> <877ip4bd5o.fsf@adboyd.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I9kXN-0002MV-Iv for emacs-orgmode@gnu.org; Sat, 14 Jul 2007 12:32:05 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I9kXM-0002LG-Pj for emacs-orgmode@gnu.org; Sat, 14 Jul 2007 12:32:05 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I9kXM-0002Ku-KO for emacs-orgmode@gnu.org; Sat, 14 Jul 2007 12:32:04 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1I9kXM-0002Z0-99 for emacs-orgmode@gnu.org; Sat, 14 Jul 2007 12:32:04 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1I9kXE-0008Ki-Be for emacs-orgmode@gnu.org; Sat, 14 Jul 2007 18:31:56 +0200 Received: from 156-40.126-70.tampabay.res.rr.com ([70.126.40.156]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 Jul 2007 18:31:56 +0200 Received: from david by 156-40.126-70.tampabay.res.rr.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sat, 14 Jul 2007 18:31:56 +0200 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: emacs-orgmode@gnu.org Thanks, because putting DONE in front of CANCEL works just fine for me. Now everything works very well. Thank you for all your efforts in providing what has to be the best support for a software project that I have ever encountered. Long live Carsten! Dave Carsten Dominik writes: > On Jul 13, 2007, at 16:18, J. David Boyd wrote: > >> >> Archiving works almost perfectly in 5.03, thanks. >> >> Here's the new problem. >> >> Defined in my .emacs, I have >> >> '(org-todo-keywords (quote ("TODO" "REQUIREMENTS" "ACCOMPLISH" >> "VALIDATE" >> "TEST" "|" "CANCEL" "DONE"))) >> >> What is happening is that, when I archive an item, it gets moved >> correctly, >> the archive stamp is written correctly, but instead of saying DONE, >> it says >> CANCEL. > > Org-mode simply picks the first state after "|" for this. > You could re-order, or we could allow a string value for > org-archive-mark-done, in order to specify the keyword to be used. > >> >> Actually, is this a bug? Or should I just reorder my list to have >> DONE come >> before CANCEL. I thought that I read somewhere that DONE had to be >> the last >> item in the line, but I don't seem to see that now that I'm trying >> to find it. > > If you don't care about the sequence of DONE and CANCEL, you can just > reorder. > Since we have the "|" to separate TODO and DONE states, DONE does not > have to be last. > Only if you do not specify "|", then the last keyword is used as a state > meaning that the item is done. > > - Carsten