From 9b661ddca2670b5057ebb06fdd1c3000ff0c32c7 Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Mon, 17 Mar 2008 14:30:26 +0100 Subject: [PATCH] Use `org-scheduled-past-days'. This variable was defined but not used, now it is. --- ChangeLog | 4 ++++ org.el | 1 + 2 files changed, 5 insertions(+) diff --git a/ChangeLog b/ChangeLog index 7c72a7a6f..a7a3afd90 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2008-03-17 Carsten Dominik + + * org.el (org-scheduled-past-days): Respect + `org-scheduled-past-days'. 2008-03-14 Bastien Guerry diff --git a/org.el b/org.el index 4fe79d7ce..e9d035fc1 100644 --- a/org.el +++ b/org.el @@ -21834,6 +21834,7 @@ FRACTION is what fraction of the head-warning time has passed." ;; When to show a scheduled item in the calendar: ;; If it is on or past the date. (if (or (and (< diff 0) + (< (abs diff) org-scheduled-past-days) (and todayp (not org-agenda-only-exact-dates))) (= diff 0)) (save-excursion -- 2.11.4.GIT