From mboxrd@z Thu Jan 1 00:00:00 1970 From: Matthias Teege Subject: skip entry with inherited tags Date: Tue, 18 May 2010 09:42:32 +0200 Message-ID: <20100518074232.GA10524@mteege.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from [140.186.70.92] (port=57377 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OEJdr-0002p8-1q for emacs-orgmode@gnu.org; Tue, 18 May 2010 06:03:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OEJdi-0007H3-Rt for emacs-orgmode@gnu.org; Tue, 18 May 2010 06:03:14 -0400 Received: from port-87-193-189-27.static.qsc.de ([87.193.189.27]:64269 helo=crn.mteege.de) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OEHmI-0004xV-AA for emacs-orgmode@gnu.org; Tue, 18 May 2010 04:03:55 -0400 Content-Disposition: inline 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@gnu.org Moin, I'm using a simple skip-function to exclude todos from a list. (defun my-skip-someday-and-scheduled () "" (org-agenda-skip-entry-if 'scheduled 'regexp ":SOMEDAY:")) That works when the tag was assigned to an entry but not when it was inherited from a parent. How do I get all tags for an entry? Many thanks Matthias