From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robert Pluim Subject: Re: Excluding DONE todo items from the agenda Date: Fri, 03 Dec 2010 11:40:57 +0100 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from [140.186.70.92] (port=44267 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1POT4m-0002cl-P2 for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 05:41:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1POT4l-000213-P2 for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 05:41:16 -0500 Received: from lo.gmane.org ([80.91.229.12]:58589) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1POT4l-00020w-Jf for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 05:41:15 -0500 Received: from list by lo.gmane.org with local (Exim 4.69) (envelope-from ) id 1POT4e-0001DW-Ro for emacs-orgmode@gnu.org; Fri, 03 Dec 2010 11:41:08 +0100 Received: from lns-bzn-49f-81-56-191-143.adsl.proxad.net ([81.56.191.143]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Dec 2010 11:41:08 +0100 Received: from rpluim by lns-bzn-49f-81-56-191-143.adsl.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Fri, 03 Dec 2010 11:41:08 +0100 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 Robert Pluim writes: > Hi, > > is there a way to not show TODO items that are DONE in the agenda view > ('C-aa') by default? It seems I have them showing up because they have a > deadline, but when they're done, that doesn't matter anymore :) Whilst investigating this, I noticed the following, which I suspect counts as obvious enough that I won't have to sign anything :) 2010-12-03 Robert Pluim * org-agenda.el (org-agenda-toggle-deadlines): Fix docstring diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index 48856c9..c63fa98 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -6314,7 +6314,7 @@ When called with a prefix argument, include all archive files as well." (if org-agenda-include-diary "on" "off"))) (defun org-agenda-toggle-deadlines () - "Toggle diary inclusion in an agenda buffer." + "Toggle inclusion of entries with a deadline in an agenda buffer." (interactive) (org-agenda-check-type t 'agenda) (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))