emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* List of all TODOs bug in 5.05 and 5.06 ?
@ 2007-08-29 18:20 Bernt Hansen
  2007-08-30  7:09 ` Carsten Dominik
  2007-08-30 13:14 ` Jason F. McBrayer
  0 siblings, 2 replies; 5+ messages in thread
From: Bernt Hansen @ 2007-08-29 18:20 UTC (permalink / raw)
  To: emacs-orgmode

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))))
`----

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: List of all TODOs bug in 5.05 and 5.06 ?
  2007-08-29 18:20 List of all TODOs bug in 5.05 and 5.06 ? Bernt Hansen
@ 2007-08-30  7:09 ` Carsten Dominik
  2007-08-30 13:14 ` Jason F. McBrayer
  1 sibling, 0 replies; 5+ messages in thread
From: Carsten Dominik @ 2007-08-30  7:09 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

I did fix something like that yesterday, hard to tell without an example
file if this is the same problem.  please check the next
release to see if this is gone.

Thanks.

- Carsten

On Aug 29, 2007, at 20:20, Bernt Hansen wrote:

> 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))))
> `----
>
>
>
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode
>
>

--
Carsten Dominik
Sterrenkundig Instituut "Anton Pannekoek"
Universiteit van Amsterdam
Kruislaan 403
NL-1098SJ Amsterdam
phone: +31 20 525 7477

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: List of all TODOs bug in 5.05 and 5.06 ?
  2007-08-29 18:20 List of all TODOs bug in 5.05 and 5.06 ? Bernt Hansen
  2007-08-30  7:09 ` Carsten Dominik
@ 2007-08-30 13:14 ` Jason F. McBrayer
  2007-08-30 13:21   ` Jason F. McBrayer
  2007-08-30 13:23   ` Bernt Hansen
  1 sibling, 2 replies; 5+ messages in thread
From: Jason F. McBrayer @ 2007-08-30 13:14 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

Bernt Hansen <bernt@alumni.uwaterloo.ca> writes:

> 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)

Just to chime in, any use of org-agenda-get-todos hangs for me, with my
own org-todo-keywords configuration, but only on reasonably complex
files (like my home and work GTD files).  I'll test with the next
release. 

-- 
+-----------------------------------------------------------+
| Jason F. McBrayer                    jmcbray@carcosa.net  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada    |

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: List of all TODOs bug in 5.05 and 5.06 ?
  2007-08-30 13:14 ` Jason F. McBrayer
@ 2007-08-30 13:21   ` Jason F. McBrayer
  2007-08-30 13:23   ` Bernt Hansen
  1 sibling, 0 replies; 5+ messages in thread
From: Jason F. McBrayer @ 2007-08-30 13:21 UTC (permalink / raw)
  To: Bernt Hansen; +Cc: emacs-orgmode

jmcbray@carcosa.net (Jason F. McBrayer) writes:
> Just to chime in, any use of org-agenda-get-todos hangs for me, with my
> own org-todo-keywords configuration, but only on reasonably complex
> files (like my home and work GTD files).  I'll test with the next
> release. 

And I can confirm it's fixed in 5.07.

-- 
+-----------------------------------------------------------+
| Jason F. McBrayer                    jmcbray@carcosa.net  |
| If someone conquers a thousand times a thousand others in |
| battle, and someone else conquers himself, the latter one |
| is the greatest of all conquerors.  --- The Dhammapada    |

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: List of all TODOs bug in 5.05 and 5.06 ?
  2007-08-30 13:14 ` Jason F. McBrayer
  2007-08-30 13:21   ` Jason F. McBrayer
@ 2007-08-30 13:23   ` Bernt Hansen
  1 sibling, 0 replies; 5+ messages in thread
From: Bernt Hansen @ 2007-08-30 13:23 UTC (permalink / raw)
  To: Carsten Dominik, Jason F. McBrayer; +Cc: emacs-orgmode

jmcbray@carcosa.net (Jason F. McBrayer) writes:

> Bernt Hansen <bernt@alumni.uwaterloo.ca> writes:
>
>> 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)
>
> Just to chime in, any use of org-agenda-get-todos hangs for me, with my
> own org-todo-keywords configuration, but only on reasonably complex
> files (like my home and work GTD files).  I'll test with the next
> release. 

This is fixed in 5.07.  Thanks Carsten!

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2007-08-30 13:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-08-29 18:20 List of all TODOs bug in 5.05 and 5.06 ? Bernt Hansen
2007-08-30  7:09 ` Carsten Dominik
2007-08-30 13:14 ` Jason F. McBrayer
2007-08-30 13:21   ` Jason F. McBrayer
2007-08-30 13:23   ` Bernt Hansen

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).