From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mike Ashley Subject: Re: eliminating blocked tasks from printed agenda Date: Sun, 4 Jan 2015 10:15:07 -0500 Message-ID: <20150104151503.GA30952@mordor> References: <20150104112431.GB24132@mordor> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:37715) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7mtl-0001Ow-BL for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 10:15:22 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Y7mth-00025v-8V for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 10:15:21 -0500 Received: from ashleyfamily.org ([104.200.16.144]:37655 helo=mail.ashleyfamily.org) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Y7mth-00025e-3y for emacs-orgmode@gnu.org; Sun, 04 Jan 2015 10:15:17 -0500 Received: from [127.0.0.1] (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mail.ashleyfamily.org (Postfix) with ESMTPSA id A9655229D3 for ; Sun, 4 Jan 2015 09:15:13 -0600 (CST) Content-Disposition: inline In-Reply-To: <20150104112431.GB24132@mordor> 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 On Sun, Jan 04, 2015 at 06:24:32AM -0500, Mike Ashley wrote: > I am having a configuration problem I was hoping to get some help > with. I have a simple agenda configuration file that looks like this. > > (setq org-agenda-custom-commands > '(("o" "Office tasks" > tags-todo "OFFICE" > nil > ("~/agenda.pdf")))) > > And I have the custom variable org-agenda-dim-blocked-tasks set to the > symbol invisible. I apologize. I realized I neither anticipated some obvious questions nor did I include enough information to reproduce. I am running Emacs 23.4.1 and org 8.2.9. Here is a complete .emacs file and org file to demonstrate the problem. First the .emacs file. ;;; ----------------------------- (add-to-list 'load-path "~mike/projects/org-mode/lisp") (setq org-agenda-files '("~mike/Documents/notes/gtd.org")) (global-set-key "\C-ca" 'org-agenda) (require 'org) (setq org-agenda-custom-commands '(("o" "Agenda and office-related tasks" tags-todo "OFFICE" nil ("~/agenda.pdf")))) (custom-set-variables '(org-agenda-dim-blocked-tasks (quote invisible)) '(org-enforce-todo-dependencies t)) ;;; ----------------------------- Now the gtd.org file. #+STARTUP: overview indent #+TAGS: OFFICE(o) HOME(h) #+SEQ_TODO: TODO DONE * Miscellaneous ** TODO One :OFFICE: ** TODO Two :HOME: * Project one :PROPERTIES: :ORDERED: t :END: ** TODO First project task :OFFICE: ** TODO This task should be blocked :OFFICE: If I C-c a, I get the correct agenda. If I C-x w to agenda.txt or C-c a e to create agenda.pdf, the created files include the blocked task. What can I do to make the exported agenda match the agenda in buffer? Mike