Skip to content

Commit

Permalink
Fix bug in org date sorting.
Browse files Browse the repository at this point in the history
  • Loading branch information
candera committed Feb 22, 2014
1 parent e8de1d2 commit 7ad8d66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions init.el
Original file line number Diff line number Diff line change
Expand Up @@ -1123,8 +1123,8 @@ always last."
(`nil 4)
("DONE" (format "5%20d" (let ((ct (org-entry-get (point) "CLOSED")))
(if ct
(org-time-difference ct "3000-01-01")
0))))
(org-time-difference ct "2038-01-01")
1.0e23))))
(otherwise 6))
(let ((etime (or (org-entry-get (point) "SCHEDULED")
(org-entry-get (point) "DEADLINE"))))
Expand Down

0 comments on commit 7ad8d66

Please sign in to comment.