]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
show_date(): rename the "relative" parameter to "mode"
authorJohannes Schindelin <Johannes.Schindelin@gmx.de>
Tue, 27 Feb 2007 15:21:04 +0000 (16:21 +0100)
committerJunio C Hamano <junkio@cox.net>
Wed, 28 Feb 2007 01:29:37 +0000 (17:29 -0800)
commitf8493ec09bcdbd616084dcfa6f5b8ca0bbb68acf
tree0c35303d6086605ed933adf85e3812de7fda47a0
parent094e03b039aeaad759227540491c235b3a83b83a
show_date(): rename the "relative" parameter to "mode"

Now, show_date() can print three different kinds of dates: normal,
relative and short (%Y-%m-%s) dates.

To achieve this, the "int relative" was changed to "enum date_mode
mode", which has three states: DATE_NORMAL, DATE_RELATIVE and
DATE_SHORT.

Since existing users of show_date() only call it with relative_date
being either 0 or 1, and DATE_NORMAL and DATE_RELATIVE having these
values, no behaviour is changed.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
cache.h
date.c