From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Thum Subject: Re: Possible bug in mobile export Date: Thu, 02 Feb 2012 20:58:38 +0100 Message-ID: <4F2AEAEE.20604@gmx.de> References: <4F286500.2000008@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:56829) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Rt1sq-0005wu-HD for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 13:59:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Rt1sk-0004uA-QF for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 13:59:48 -0500 Received: from mailout-de.gmx.net ([213.165.64.23]:48724) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1Rt1sk-0004u4-Gu for emacs-orgmode@gnu.org; Thu, 02 Feb 2012 13:59:42 -0500 In-Reply-To: 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: Greg Troxel Cc: emacs-orgmode@gnu.org Hi Gerd, thanks for the pointer! I guess I could have googled it... On 02/01/2012 01:58 AM, Greg Troxel wrote: > > The following fix is in org master, but not in 7.8. I am able to use > org-mobile-push. > > > commit 71089b7e3b00736f854d6e95a52229853262e12a > Author: Bastien Guerry > Date: Wed Jan 4 16:37:59 2012 +0100 > > org-mobile.el (org-mobile-push): Use `org-agenda-tag-filter'. > > * org-mobile.el (org-mobile-push): Use `org-agenda-tag-filter' > instead of the obsolete `org-agenda-filter'. > > Thanks to Charles Sebold for reporting this. > > diff --git a/lisp/org-mobile.el b/lisp/org-mobile.el > index b049f4e..bcc1c90 100644 > --- a/lisp/org-mobile.el > +++ b/lisp/org-mobile.el > @@ -303,7 +303,7 @@ create all custom agenda views, for upload to the mobile phone." > (interactive) > (let ((a-buffer (get-buffer org-agenda-buffer-name))) > (let ((org-agenda-buffer-name "*SUMO*") > - (org-agenda-filter org-agenda-filter) > + (org-agenda-tag-filter org-agenda-tag-filter) > (org-agenda-redo-command org-agenda-redo-command)) > (save-excursion > (save-window-excursion >