From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bernt Hansen Subject: List of all TODOs bug in 5.05 and 5.06 ? Date: Wed, 29 Aug 2007 14:20:59 -0400 Message-ID: <87hcmidwxg.fsf@gollum.intra.norang.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1IQSAV-00052S-3G for emacs-orgmode@gnu.org; Wed, 29 Aug 2007 14:21:31 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1IQSAT-00050s-06 for emacs-orgmode@gnu.org; Wed, 29 Aug 2007 14:21:30 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1IQSAS-00050l-Rh for emacs-orgmode@gnu.org; Wed, 29 Aug 2007 14:21:28 -0400 Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1IQSAS-0002gG-Bv for emacs-orgmode@gnu.org; Wed, 29 Aug 2007 14:21:28 -0400 Received: from list by ciao.gmane.org with local (Exim 4.43) id 1IQSAJ-0000eX-Kl for emacs-orgmode@gnu.org; Wed, 29 Aug 2007 20:21:19 +0200 Received: from cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com ([74.119.210.211]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Aug 2007 20:21:19 +0200 Received: from bernt by cpe000102d0fe75-cm0012256ecbde.cpe.net.cable.rogers.com with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Aug 2007 20:21:19 +0200 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 Hi Carsten, When I try to do "C-c a t" to list all todo's in my (now single) todo.org file it hangs (at least I've never waited for it to finish). Org version 5.04 works but 5.05 and 5.06e both behave the same. I can list delegated tasks but not ALL or WAITING (both hang) I've recently modified my .emacs to some of the setup from http://johnwiegley.com/org.mode.day.planner.html The last time this kind of thing happened to me it was a modified outline-regexp variable IIRC. I have no idea if that is related or not. Let me know if I can provide any more details. Thanks, Bernt ,----[ Top of my todo.org file ] | MY PROJECTS -*- mode: org; fill-column: 78 -*- | | #+STARTUP: content | #+STARTUP: lognotestate | #+SEQ_TODO: TODO STARTED WAITING DELEGATED APPT | DONE DEFERRED CANCELLED | #+TAGS: { SCHOOL(s) WORK(w) } CALL(c) ERRAND(e) `---- ,----[ part of my ~/.emacs file ] | (custom-set-variables | ; '(org-agenda-files (quote ("~/org/todo.org"))) | '(org-default-notes-file "~/org/notes.org") | '(org-agenda-ndays 7) | '(org-deadline-warning-days 14) | '(org-agenda-show-all-dates t) | '(org-agenda-skip-deadline-if-done t) | '(org-agenda-skip-scheduled-if-done t) | '(org-agenda-start-on-weekday nil) | '(org-reverse-note-order t) | '(org-fast-tag-selection-single-key (quote expert)) | '(org-agenda-custom-commands | (quote (("d" todo "DELEGATED" nil) | ("c" todo "DONE|DEFERRED|CANCELLED" nil) | ("w" todo "WAITING" nil) | ("W" agenda "" ((org-agenda-ndays 21))) | ("A" agenda "" | ((org-agenda-skip-function | (lambda nil | (org-agenda-skip-entry-if (quote notregexp) "\\=.*\\[#A\\]"))) | (org-agenda-ndays 1) | (org-agenda-overriding-header "Today's Priority #A tasks: "))) | ("u" alltodo "" | ((org-agenda-skip-function | (lambda nil | (org-agenda-skip-entry-if (quote scheduled) (quote deadline) | (quote regexp) "<[^>\n]+>"))) | (org-agenda-overriding-header "Unscheduled TODO entries: ")))))) | '(org-remember-store-without-prompt t) | '(org-remember-templates | (quote ((116 "* TODO %?\n %u" "~/org/todo.org" "Tasks") | (110 "* %u %?" "~/org/notes.org" "Notes")))) | '(remember-annotation-functions (quote (org-remember-annotation))) | '(remember-handler-functions (quote (org-remember-handler)))) `----