Skip to content

Commit

Permalink
Fix cfw:org-get-timerange to display the correct timerange
Browse files Browse the repository at this point in the history
  • Loading branch information
Chance.Yang committed May 10, 2021
1 parent 03abce9 commit 4fa5e37
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions calfw-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -238,12 +238,10 @@ If TEXT does not have a range, return nil."
(match-string 1 extra)))
(total-days (string-to-number
(match-string 2 extra)))
(start-date (time-subtract
(org-read-date nil t date-string)
(seconds-to-time (* 3600 24 (- cur-day 1)))))
(start-date (org-read-date nil t date-string))
(end-date (time-add
(org-read-date nil t date-string)
(seconds-to-time (* 3600 24 (- total-days cur-day))))))
(seconds-to-time (* 3600 24 (- total-days 1))))))
(list (calendar-gregorian-from-absolute (time-to-days start-date))
(calendar-gregorian-from-absolute (time-to-days end-date)) text))
)))))
Expand Down

0 comments on commit 4fa5e37

Please sign in to comment.