[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [O] query about past scheduled events display in agenda
From: |
Nicolas Goaziou |
Subject: |
Re: [O] query about past scheduled events display in agenda |
Date: |
Thu, 16 Mar 2017 13:05:42 +0100 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) |
Hello,
Eric S Fraga <address@hidden> writes:
> Something has been bothering me (in an æsthetic way) for some
> time. When an event scheduled for the day before is displayed in the
> default agenda view, it displays the days overdue as "2" which seems
> wrong to me. I wonder if somebody can give me the justification for
> this?
>
> The code in question, with my own change to fix this to display "1" day
> overdue in such cases, is:
>
> @@ -6214,7 +6214,7 @@ scheduled items with an hour specification like
> [h]h:mm."
> (pcase-let ((`(,first ,past) org-agenda-scheduled-leaders))
> ;; Show a reminder of a past scheduled today.
> (if (and todayp pastschedp)
> - (format past (1+ diff))
> + (format past diff)
> first))
> head level category tags time nil habitp))
> (face (cond ((and (not habitp) pastschedp)
I cannot reproduce it on maint nor on master. Wasn't that fixed some
time ago?
Regards,
--
Nicolas Goaziou
- [O] query about past scheduled events display in agenda, Eric S Fraga, 2017/03/16
- Re: [O] query about past scheduled events display in agenda,
Nicolas Goaziou <=
- Re: [O] query about past scheduled events display in agenda, Detlef Steuer, 2017/03/16
- Message not available
- Re: [O] query about past scheduled events display in agenda, Eric S Fraga, 2017/03/16
- Re: [O] query about past scheduled events display in agenda, Nicolas Goaziou, 2017/03/16
- Re: [O] query about past scheduled events display in agenda, Eric Abrahamsen, 2017/03/16
- Re: [O] query about past scheduled events display in agenda, Detlef Steuer, 2017/03/16
- Re: [O] query about past scheduled events display in agenda, Nicolas Goaziou, 2017/03/17
- Message not available
- Re: [O] query about past scheduled events display in agenda, Eric S Fraga, 2017/03/17
- Message not available
- Re: [O] query about past scheduled events display in agenda, Eric S Fraga, 2017/03/17
Re: [O] query about past scheduled events display in agenda, Samuel Wales, 2017/03/16