From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Andrew J. Korty" Subject: [PATCH] Enable tags-todo agenda commands for MobileOrg Date: Thu, 19 Nov 2009 13:48:30 -0500 Message-ID: Mime-Version: 1.0 (Apple Message framework v1077) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: quoted-printable Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NBC3c-00050Z-NC for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 13:48:40 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NBC3Y-0004zJ-Nh for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 13:48:40 -0500 Received: from [199.232.76.173] (port=41987 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NBC3Y-0004zE-Ah for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 13:48:36 -0500 Received: from hartman.uits.indiana.edu ([129.79.1.194]:50034) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1NBC3X-0001vb-TJ for emacs-orgmode@gnu.org; Thu, 19 Nov 2009 13:48:36 -0500 Received: from mail-relay.iu.edu (burns.uits.indiana.edu [129.79.1.202]) by hartman.uits.indiana.edu (8.14.2/8.13.8/IU Messaging Team) with ESMTP id nAJImVTS001310 for ; Thu, 19 Nov 2009 13:48:31 -0500 Received: from 149-166-143-159.dhcp-in.iupui.edu (149-166-143-159.dhcp-in.iupui.edu [149.166.143.159]) (authenticated bits=0) by mail-relay.iu.edu (8.14.2/8.13.8/IU Messaging Team Submission) with ESMTP id nAJImUu4012956 (version=TLSv1/SSLv3 cipher=AES128-SHA bits=128 verify=NO) for ; Thu, 19 Nov 2009 13:48:31 -0500 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: Org Mode Not sure if these are disabled for a reason, but the following patch = doesn't seem to cause any ill effects. They work without the patch in = block agendas, just not on their own. ajk --- org-mobile.el~ 2009-11-19 13:45:54.000000000 -0500 +++ org-mobile.el 2009-11-19 13:44:10.000000000 -0500 @@ -438,7 +438,7 @@ ((memq (nth 2 e) '(todo-tree tags-tree occur-tree)) ;; These are trees, not really agenda commands ) - ((memq (nth 2 e) '(agenda todo tags)) + ((memq (nth 2 e) '(agenda todo tags tags-todo)) ;; a normal command (setq key (car e) desc (nth 1 e) type (nth 2 e) match (nth 3 e) settings (nth 4 e))