On Apr 2, 2008, at 11:45 AM, Bastien wrote:
lanas <lanas@securenet.net> writes:

'(org-todo-keywords (quote ("TODO" "NOTE" "LATER" "VERIFY" "BUG" "DONE") org-todo-interpretation (quote sequence)))

Once this line is commented out, then org mode works nicely.  That's
great.  It's nice to have that font choice in emacs.  Next I will try
to see why the above line causes the problem.

The above line should be split into two variable settings:

'(org-todo-keywords (quote ("TODO" "NOTE" "LATER" "VERIFY" "BUG" "DONE")))
'(org-todo-interpretation (quote sequence))                  

Sorry that I need to correct this, but also as modified by Bastien this
is still the old, obsolete form.  The correct setting would be

'(org-todo-keywords (quote (sequence "TODO" "NOTE" "LATER" "VERIFY" "BUG" "|" "DONE")))

No setting of org-todo-interpretation is required.

- Carsten