From mboxrd@z Thu Jan 1 00:00:00 1970 From: david@adboyd.com (J. David Boyd) Subject: Re: BUG in org-mobile-create-index-file() Date: Thu, 03 Jan 2013 13:24:44 -0500 Message-ID: <87k3ru3z0z.fsf@adboyd.com> References: <87lid9e86x.fsf@adboyd.com> <87fw2ibf1f.fsf@bzg.ath.cx> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:36532) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TqpTc-0004S4-5W for emacs-orgmode@gnu.org; Thu, 03 Jan 2013 13:25:13 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TqpTZ-0007j5-1W for emacs-orgmode@gnu.org; Thu, 03 Jan 2013 13:25:12 -0500 Received: from plane.gmane.org ([80.91.229.3]:55653) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TqpTY-0007iS-Q4 for emacs-orgmode@gnu.org; Thu, 03 Jan 2013 13:25:08 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TqpTm-0008Eh-Aa for emacs-orgmode@gnu.org; Thu, 03 Jan 2013 19:25:22 +0100 Received: from 72.185.97.240 ([72.185.97.240]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Jan 2013 19:25:22 +0100 Received: from david by 72.185.97.240 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 03 Jan 2013 19:25:22 +0100 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Cool, thanks for the change! Dave Bastien writes: > Hi David, > > david@adboyd.com (J. David Boyd) writes: > >> The section of the code that writes out the Priorities (line 462 in org >> version 7.9.2) totally ignores the variables org-highest-priority and >> org-lowest-priority, and simply sets the #+ALLPRIORITIES value to "A B >> C". >> >> In my case, I have org-highest-priority set to '1', and >> org-lowest-priority set to '5', so I would expect #+ALLPRIORITIES to be >> set to "1 2 3 4 5". >> >> My elisp-fu is non-existant, so could someone please fix this to enable >> MobileOrg to work more correctly? > > I've introduced a new option: `org-mobile-allpriorities'. > > You can set it to "1 2 3 4 5". > > This is not a very flexible way to handle priorities, but I'm not > familiar enough with org-mobile.el and it should help in most cases. > > Best,