Jeff King <peff@xxxxxxxx> writes: > On Fri, Feb 20, 2009 at 02:51:11PM -0800, eletuchy@xxxxxxxxx wrote: > >> @@ -1975,6 +1975,9 @@ static int git_blame_config(const char *var, const char *value, void *cb) >> blank_boundary = git_config_bool(var, value); >> return 0; >> } >> + if (!strcmp(var, "blame.date") && value[0]) { >> + blame_date_mode = parse_date_format(value); >> + } >> return git_default_config(var, value, cb); >> } > > When there is a config value we are expecting to have a value rather > than a boolean, we usually print an error rather than silently > discarding. Oops, missed that. Yes, this needs fixing. Thanks. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html