Cezar Halmagean <[EMAIL PROTECTED]> writes:
> I have a TODO entry that's scheduled for:
>
> SCHEDULED: <2008-06-05 Thu>
>
> and today in the agenda buffer I see :
>
> project: Sched. 2x TODO my_task
Nothing wrong with that, the entry was scheduled yesterday (1x) and today
(2x) :-)
But if you want to know, how many days you're late (which seems to be in
line with the docs) the following patch will help
"Text preceeding scheduled items in the agenda view.
This is a list with two strings. The first applies when the item is
scheduled on the current day. The second applies when it has been scheduled
previously, it may contain a %d to capture how many days ago the item was
scheduled."
Thomas
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index d248c87..ff88bd0 100644
--- a/lisp/org-agenda.el
+++ b/lisp/org-agenda.el
@@ -3465,7 +3465,7 @@ FRACTION is what fraction of the head-warning time has
passed."
(if (= diff 0)
(car org-agenda-scheduled-leaders)
(format (nth 1 org-agenda-scheduled-leaders)
- (- 1 diff)))
+ (- 0 diff)))
head category tags timestr))))
(setq txt org-agenda-no-heading-message))
(when txt
_______________________________________________
Emacs-orgmode mailing list
Remember: use `Reply All' to send replies to the list.
[email protected]
http://lists.gnu.org/mailman/listinfo/emacs-orgmode