From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rich E Subject: Re: workflow states Date: Thu, 5 Feb 2009 19:14:04 +0100 Message-ID: References: <87wsc4uc9n.fsf@fastmail.fm> <874oz8omgc.fsf@gollum.intra.norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LV8jm-0004Fe-SG for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 13:14:07 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LV8jm-0004FM-Hu for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 13:14:06 -0500 Received: from [199.232.76.173] (port=42191 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LV8jm-0004FF-4X for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 13:14:06 -0500 Received: from mail-ew0-f20.google.com ([209.85.219.20]:44575) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LV8jl-000401-Sd for emacs-orgmode@gnu.org; Thu, 05 Feb 2009 13:14:06 -0500 Received: by ewy13 with SMTP id 13so684631ewy.18 for ; Thu, 05 Feb 2009 10:14:04 -0800 (PST) In-Reply-To: <874oz8omgc.fsf@gollum.intra.norang.ca> 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: Bernt Hansen Cc: emacs-orgmode@gnu.org Upgraded. I can now get the VERIFY with the following code: (setq org-todo-keywords '((sequence "TODO" "VERIFY" "|" "DONE"))) .. but I the code below does not give me a VERIFY (but it does give me nice colors, which I like :) (setq org-todo-keyword-faces '(("TODO" :foreground "blue" :weight bold) ("VERIFY" :foreground "red" :weight bold) ("DONE" :foreground "forest green" :weight bold))) Sorry for all the questions about these things that I would probably know how to do if I knew lisp, but I don't :) Thanks for the help! - Rich On Thu, Feb 5, 2009 at 5:52 PM, Bernt Hansen wrote: > Ah that's ancient... :) > > 4.67 is from Jan 31 2008 > 6.21b is from Feb 2 2009 > > And there have been 134 releases between these two versions... > > You should upgrade to something recent and try again. > > -Bernt > > > Rich E writes: > >> I am using version 4.6.7c. >> >> The following code: >> >> (setq org-todo-keywords '((sequence "TODO" "VERIFY" "|" "DONE"))) >> >> gives the error "Wrong type argument: integerp, sequence" >> >> This code: >> >> (setq org-todo-keyword-faces '(("TODO" :foreground "blue" :weight bold) >> ("VERIFY" :foreground "red" :weight bold) >> ("DONE" :foreground "forest green" :weight bold))) >> >> works just like the default on my computer.. I do not get a VERIFY, >> just a cycle between TODO, DONE, and nothing. >> >> Maybe I need to update my org-mode? >> >> Thanks for the fast responses.. >> rich >> >> On Thu, Feb 5, 2009 at 4:36 PM, Matthew Lundin wrote: >>> >>> 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 >>> >> >> >> _______________________________________________ >> 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 >