The behaviour of noon and tea depends on the current time even when the date is given. In other words, "last Friday tea" is dated to Thursday if the command is run before 17 pm. This can be fixed by checking whether tm->tm_mday already holds a determined value and tested by setting current time before 12 or 17 pm for noon and tea respectively. Signed-off-by: Tuomas Ahola <taahol@xxxxxx> --- date.c | 2 +- t/t0006-date.sh | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/date.c b/date.c index 17a95077cf..482a2f8c99 100644 --- a/date.c +++ b/date.c @@ -1133,7 +1133,7 @@ static void date_yesterday(struct tm *tm, struct tm *now, int *num) static void date_time(struct tm *tm, struct tm *now, int hour) { if (tm->tm_hour < hour) - update_tm(tm, now, 24*60*60); + update_tm(tm, now, tm->tm_mday < 0 ? 24*60*60 : 0); tm->tm_hour = hour; tm->tm_min = 0; tm->tm_sec = 0; diff --git a/t/t0006-date.sh b/t/t0006-date.sh index 53ced36df4..5db4b23e0b 100755 --- a/t/t0006-date.sh +++ b/t/t0006-date.sh @@ -180,7 +180,10 @@ check_approxidate '3:00' '2009-08-30 03:00:00' check_approxidate '15:00' '2009-08-30 15:00:00' check_approxidate 'noon today' '2009-08-30 12:00:00' check_approxidate 'noon yesterday' '2009-08-29 12:00:00' -check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00' +( + GIT_TEST_DATE_NOW=$(($GIT_TEST_DATE_NOW-12*60*60)); export GIT_TEST_DATE_NOW + check_approxidate 'January 5th noon pm' '2009-01-05 12:00:00' +) check_approxidate '10am noon' '2009-08-29 12:00:00' check_approxidate 'last tuesday' '2009-08-25 19:20:00' -- 2.30.2