diff options
author | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-06 12:06:31 +0200 |
---|---|---|
committer | Lukas Fleischer <calcurse@cryptocrack.de> | 2011-10-21 08:58:53 +0200 |
commit | 3e84074ae55bc93faad0b708aa0dd6fd0f09ade9 (patch) | |
tree | c6d3dd1695f79ecd9acddc54767bbf06abebc72a /src/recur.c | |
parent | 50ad339a228a779ae1284e21f98321268478669c (diff) | |
download | calcurse-3e84074ae55bc93faad0b708aa0dd6fd0f09ade9.zip |
Make events start on 00:00 (12:00 a.m.)
There is absolutely no reason to make events start on noon, 12:00.
Switching to 00:00 seems totally reasonable here, and makes event
handling a bit easier, also.
Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/recur.c')
-rw-r--r-- | src/recur.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/recur.c b/src/recur.c index 0415257..de2efff 100644 --- a/src/recur.c +++ b/src/recur.c @@ -425,7 +425,7 @@ recur_event_scan (FILE *f, struct tm start, int id, char type, int freq, { *nl = '\0'; } - start.tm_hour = until.tm_hour = 12; + start.tm_hour = until.tm_hour = 0; start.tm_min = until.tm_min = 0; start.tm_sec = until.tm_sec = 0; start.tm_isdst = until.tm_isdst = -1; @@ -988,7 +988,7 @@ recur_exc_scan (llist_t *lexc, FILE *data_file) { EXIT (_("syntax error in item date")); } - day.tm_hour = 12; + day.tm_hour = 0; day.tm_min = day.tm_sec = 0; day.tm_isdst = -1; day.tm_year -= 1900; @@ -1089,7 +1089,7 @@ recur_event_paste_item (void) long new_start, time_shift; llist_item_t *i; - new_start = date2sec (*calendar_get_slctd_day (), 12, 0); + new_start = date2sec (*calendar_get_slctd_day (), 0, 0); time_shift = new_start - bkp_cut_recur_event.day; bkp_cut_recur_event.day += time_shift; |