From mboxrd@z Thu Jan  1 00:00:00 1970
From: Sebastien Vauban <sva-news-D0wtAvR13HarG/iDocfnWg@public.gmane.org>
Subject: Re: [bug] Commented DEADLINE line still referenced
Date: Wed, 21 May 2014 19:46:39 +0200
Message-ID: <86tx8jgh34.fsf@somewhere.org>
References: <86d2f8woby.fsf@somewhere.org> <87vbt0tspg.fsf@bzg.ath.cx>
Mime-Version: 1.0
Content-Type: text/plain
Return-path: <emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org>
In-Reply-To: <87vbt0tspg.fsf-E3UqQZAQFPqWIDz0JBNUog@public.gmane.org> (Bastien's message of "Tue, 20 May
	2014 16:44:59 +0200")
List-Id: "General discussions about Org-mode." <emacs-orgmode.gnu.org>
List-Unsubscribe: <https://lists.gnu.org/mailman/options/emacs-orgmode>,
	<mailto:emacs-orgmode-request-mXXj517/zsQ@public.gmane.org?subject=unsubscribe>
List-Archive: <http://lists.gnu.org/archive/html/emacs-orgmode>
List-Post: <mailto:emacs-orgmode-mXXj517/zsQ@public.gmane.org>
List-Help: <mailto:emacs-orgmode-request-mXXj517/zsQ@public.gmane.org?subject=help>
List-Subscribe: <https://lists.gnu.org/mailman/listinfo/emacs-orgmode>,
	<mailto:emacs-orgmode-request-mXXj517/zsQ@public.gmane.org?subject=subscribe>
Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org
Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org-mXXj517/zsQ@public.gmane.org
To: Bastien <bzg-mXXj517/zsQ@public.gmane.org>
Cc: public-emacs-orgmode-mXXj517/zsQ-wOFGN7rlS/M9smdsby/KFg@public.gmane.org



Hi Bastien,

Bastien wrote:
> Sebastien Vauban writes:
>
>> Having such lines in one Org file (where the DEADLINE line is
>> commented):
>>
>> ** TODO Aspirer les filtres de ventilation D350
>>    # DEADLINE: <2014-04-09 Wed .+1m -0d>
>>
>> still makes that task be referenced in my agenda.
>
> Which agenda?

This custom view:

#+begin_src emacs-lisp
    (add-to-list 'org-agenda-custom-commands
                 '("f" "Today"

                   ;; list of all TODO entries with deadline today
                   ((tags-todo "DEADLINE=\"<+0d>\""
                               ((org-agenda-overriding-header "DUE TODAY")
                                (org-agenda-skip-function
                                 '(org-agenda-skip-entry-if 'notdeadline))
                                (org-agenda-sorting-strategy '(priority-down))))

                    ;; list of all TODO entries with deadline before today
                    (tags-todo "DEADLINE<\"<+0d>\""
                               ((org-agenda-overriding-header "OVERDUE")
                                (org-agenda-skip-function
                                 '(org-agenda-skip-entry-if 'notdeadline))
                                (org-agenda-sorting-strategy '(priority-down)))))) t)
#+end_src

> I cannot reproduce this with a simple week agenda view.

Here is an ECM file:

--8<---------------cut here---------------start------------->8---
#+TITLE:     Example of Tasks
#+LANGUAGE:  en

* Marketing
  :PROPERTIES:
  :CATEGORY: Marketing
  :END:

** TODO Check payment of rent
   # DEADLINE: <2014-05-15 Thu ++1m -0d>
   :PROPERTIES:
   :LAST_REPEAT: [2014-05-02 Fri 17:45]
   :Effort:   0:10
   :END:
--8<---------------cut here---------------end--------------->8---

See how it behaves on http://screencast.com/t/Yoj5uSA8Wb: I really need
to "break" the DEADLINE keyword for it to become inactive. Putting it in
a comment is not enough.

Best regards,
  Seb

-- 
Sebastien Vauban