From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: org-agenda-ignore-scheduled not taken into account in custom agenda blocks? Date: Fri, 16 Nov 2012 09:40:16 +0800 Message-ID: <871ufu8gvz.fsf@ericabrahamsen.net> References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([208.118.235.92]:55172) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZArB-0001xn-9x for emacs-orgmode@gnu.org; Thu, 15 Nov 2012 20:36:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TZAr8-0001Q0-7t for emacs-orgmode@gnu.org; Thu, 15 Nov 2012 20:36:33 -0500 Received: from plane.gmane.org ([80.91.229.3]:40766) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TZAr8-0001Pw-1a for emacs-orgmode@gnu.org; Thu, 15 Nov 2012 20:36:30 -0500 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1TZArF-0002Nq-4d for emacs-orgmode@gnu.org; Fri, 16 Nov 2012 02:36:37 +0100 Received: from 114.250.131.150 ([114.250.131.150]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 16 Nov 2012 02:36:37 +0100 Received: from eric by 114.250.131.150 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 16 Nov 2012 02:36:37 +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 Alan Schmitt writes: > Hello, > > I'm implementing some of the ideas of the great norang page > (http://doc.norang.ca/org-mode.html), but there is one thing that is > failing me. I can see that "org-agenda-ignore-scheduled" work for the > global todo list, but it does not seem to be working when using a custom > block. For instance, using the following definition: > > #+BEGIN_SRC elisp > (tags-todo "-WAITING-CANCELLED/!NEXT" > ((org-agenda-overriding-header "Next Tasks") > (org-agenda-skip-function 'bh/skip-projects-and-habits-and-single-tasks) > (org-agenda-todo-ignore-scheduled t) > (org-agenda-todo-ignore-deadlines t) > (org-agenda-todo-ignore-with-date t) > (org-tags-match-list-sublevels t) > (org-agenda-sorting-strategy > '(todo-state-down effort-up category-keep)))) > #+END_SRC > > I still see scheduled tasks. > > Is it supposed to be working or am I doing it wrong? I can confirm that scheduled and deadlined TODOs still show up where they shouldn't -- I tried putting the ignore statements both in the individual block declarations, and in the declaration at the end of the custom command. This is with org-version "7.9.2". Seems like a bug! Eric