From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthew Lundin Subject: Re: workflow states Date: Thu, 05 Feb 2009 09:36:04 -0600 Message-ID: <87wsc4uc9n.fsf@fastmail.fm> References: 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 1LV6Gp-0002hU-Pg for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:36:03 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LV6Gn-0002gZ-Um for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:36:03 -0500 Received: from [199.232.76.173] (port=41751 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LV6Gn-0002gR-Pw for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:36:01 -0500 Received: from out4.smtp.messagingengine.com ([66.111.4.28]:33389) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LV6Gn-00025F-ER for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 10:36:01 -0500 In-Reply-To: (Rich E.'s message of "Thu, 5 Feb 2009 16:04:06 +0100") 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: Rich E Cc: emacs-orgmode@gnu.org Hi Rich, Rich E writes: > Hi, > > I'd like to simply add a VERIFY workflow state between TODO and DONE > in my org files. I am looking at section 5.2.1 of the manual for how > to do this, but it is not working like I would expect. Here is the > code I have in my .emacs file: > > (setq org-todo-keywords '("TODO" "VERIFY" "DONE") > org-todo-interpretation 'sequence) > Which version of org-mode are you using? I believe the settings above are for older versions of org-mode (e.g., 4.67). Try the following and see what happens: (setq org-todo-keywords '((sequence "TODO" "VERIFY" "|" "DONE"))) Regards, Matt