From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Thum Subject: Possible bug in mobile export Date: Tue, 31 Jan 2012 23:02:40 +0100 Message-ID: <4F286500.2000008@gmx.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([140.186.70.92]:60801) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RsKrj-0003pD-5b for emacs-orgmode@gnu.org; Tue, 31 Jan 2012 16:03:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RsKre-0006Iw-ST for emacs-orgmode@gnu.org; Tue, 31 Jan 2012 16:03:47 -0500 Received: from mailout-de.gmx.net ([213.165.64.23]:43799) by eggs.gnu.org with smtp (Exim 4.71) (envelope-from ) id 1RsKre-0006Iq-As for emacs-orgmode@gnu.org; Tue, 31 Jan 2012 16:03:42 -0500 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 Dear all, I've set up my mobile sync, which worked fine in versions 6.3 - 7.7. Now I upgraded to 7.8 and when I fire up org-mobile-push I get: Debugger entered--Lisp error: (void-variable org-agenda-filter) org-mobile-push() call-interactively(org-mobile-push nil nil) The variable is not described, and I'm not very emacs-savy. However I managed to get to the lisp in question: ; org-mobile.el ;;;###autoload (defun org-mobile-push () "Push the current state of Org affairs to the WebDAV directory. This will create the index file, copy all agenda files there, and also 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-redo-command org-agenda-redo-command)) Should I configure org-agenda-filter, or is there something else I can do? Cheers, Simon