From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Scherbanov Subject: Re: stuck project definition bug? Date: Sun, 19 Oct 2014 15:18:58 +0400 Message-ID: <35FBB619-B0E6-4F48-9AEA-2B76AAF769FB@egotv.ru> References: <87siil35ba.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 (Mac OS X Mail 7.3 \(1878.6\)) Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:53503) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XfoW7-0005ME-Ju for emacs-orgmode@gnu.org; Sun, 19 Oct 2014 07:19:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XfoW0-00014P-1Q for emacs-orgmode@gnu.org; Sun, 19 Oct 2014 07:19:19 -0400 Received: from mail-la0-f52.google.com ([209.85.215.52]:37221) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XfoVz-000142-QI for emacs-orgmode@gnu.org; Sun, 19 Oct 2014 07:19:11 -0400 Received: by mail-la0-f52.google.com with SMTP id hz20so2565114lab.25 for ; Sun, 19 Oct 2014 04:19:10 -0700 (PDT) In-Reply-To: <87siil35ba.fsf@nicolasgoaziou.fr> 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: Nicolas Goaziou Cc: emacs-orgmode@gnu.org >> (setq org-stuck-projects '("PROJECT" ("NEXT") nil nil)) >> This means that everything with a tag :PROJECT: without NEXT subtask = is a stuck project. >>=20 >> I=92d like this stuck project to be shown in the stuck project list: >>=20 >> * TODO my stuck project = :PROJECT: >> ** TODO subtask >>=20 >> But it is not shown there. >=20 > I cannot reproduce it on latest Org, i.e., both tasks appear in the > stuck projects list. Hi, Nicolas. I found the cause. (setq org-enforce-todo-dependencies t) (setq org-agenda-dim-blocked-tasks =91invisible) This hides my stuck project from the list because it depends on a = subtask. I set it to dim, not to hide, that=92s enough for now. Thanks.