From mboxrd@z Thu Jan 1 00:00:00 1970 From: Torsten Wagner Subject: Fix: org-mobile-push results in byte-code: Wrong type argument: listp, "TODO" Date: Tue, 29 Jun 2010 12:28:32 +0900 Message-ID: <4C296860.6000009@gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=41309 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTRUu-0000DM-AK for emacs-orgmode@gnu.org; Mon, 28 Jun 2010 23:28:34 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTRUs-0003qt-PJ for emacs-orgmode@gnu.org; Mon, 28 Jun 2010 23:28:32 -0400 Received: from mail-pw0-f41.google.com ([209.85.160.41]:33594) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTRUs-0003qZ-KZ for emacs-orgmode@gnu.org; Mon, 28 Jun 2010 23:28:30 -0400 Received: by pwi6 with SMTP id 6so642127pwi.0 for ; Mon, 28 Jun 2010 20:28:28 -0700 (PDT) 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 Hi all, this problem was described by Xin already some monthes ago. Following the thread, the solution was to remove the customisation of the variable "org-todo-keywords". Today, I faced the exact same problem. Removing seems not the correct solution to me so I searched around in the org-manual. To my surprise I found the following example: (setq org-todo-keywords '((sequence "TODO" "FEEDBACK" "VERIFY" "|" "DONE" "DELEGATED"))) whereas in my init file I used simply (setq org-todo-keywords '("TODO" "STARTED" "WAITING" "DONE")) I changed my lines according to the manual and now org-mobile-push works without any problem. I wasn't able to track down whether the org-todo-keyword variable changed recently and I used an old definition or why I customised it in this "simple" resp. wrong way. Surprisingly, this didn't effect the TODO states mechanism in org-mode itself. They work as desired with the old customisation. Just thought I let you know, maybe some people fight or will fight with the same problem. Bye Torsten