Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions calfw-org.el
Original file line number Diff line number Diff line change
Expand Up @@ -238,14 +238,13 @@ 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))))))
(list (calendar-gregorian-from-absolute (time-to-days start-date))
(calendar-gregorian-from-absolute (time-to-days end-date)) text))
start-date
(seconds-to-time (* 3600 24 (- total-days 1))))))
(unless (= cur-day total-days)
(list (calendar-gregorian-from-absolute (time-to-days start-date))
(calendar-gregorian-from-absolute (time-to-days end-date)) text)))
)))))

(defun cfw:org-schedule-period-to-calendar (begin end)
Expand Down