From e26e47c8a10d6be3e27524d2e42669b7b3004a82 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Sun, 15 Jun 2014 10:36:59 +0200 Subject: [PATCH] org-agenda.el (org-entries-lessp): Fix inactive timestamp comparison * org-agenda.el (org-entries-lessp): Fix inactive timestamp comparison. --- lisp/org-agenda.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el index d2b1f1a7d..1f806ce23 100644 --- a/lisp/org-agenda.el +++ b/lisp/org-agenda.el @@ -7022,7 +7022,7 @@ their type." (org-cmp-ts a b "deadline"))) (deadline-down (if deadline-up (- deadline-up) nil)) (tsia-up (and (org-em 'tsia-up 'tsia-down ss) - (org-cmp-ts a b "iatimestamp_ia"))) + (org-cmp-ts a b "timestamp_ia"))) (tsia-down (if tsia-up (- tsia-up) nil)) (ts-up (and (org-em 'ts-up 'ts-down ss) (org-cmp-ts a b "timestamp")))