summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2014-06-15 10:36:59 +0200
committerBastien Guerry <bzg@altern.org>2014-06-15 10:36:59 +0200
commite26e47c8a10d6be3e27524d2e42669b7b3004a82 (patch)
treef4dd7fadb775406030e4b97708a4499329a820ca
parent61e06a038adc302922c338c6a1956bc51d7bf95d (diff)
downloadorg-mode-e26e47c8a10d6be3e27524d2e42669b7b3004a82.tar.gz
org-agenda.el (org-entries-lessp): Fix inactive timestamp comparison
* org-agenda.el (org-entries-lessp): Fix inactive timestamp comparison.
-rw-r--r--lisp/org-agenda.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org-agenda.el b/lisp/org-agenda.el
index d2b1f1a..1f806ce 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")))