From c99ad274b196bc97f22c1c39178784668cb4623d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Scharfe?= Date: Sat, 17 Sep 2016 20:25:24 +0200 Subject: pretty: let %C(auto) reset all attributes Reset colors and attributes upon %C(auto) to enable full automatic control over them; otherwise attributes like bold or reverse could still be in effect from previous %C placeholders. Signed-off-by: Rene Scharfe Signed-off-by: Junio C Hamano --- pretty.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pretty.c') diff --git a/pretty.c b/pretty.c index 3908e8f10..b86c5bb90 100644 --- a/pretty.c +++ b/pretty.c @@ -1062,6 +1062,8 @@ static size_t format_commit_one(struct strbuf *sb, /* in UTF-8 */ case 'C': if (starts_with(placeholder + 1, "(auto)")) { c->auto_color = want_color(c->pretty_ctx->color); + if (c->auto_color) + strbuf_addstr(sb, GIT_COLOR_RESET); return 7; /* consumed 7 bytes, "C(auto)" */ } else { int ret = parse_color(sb, placeholder, c); -- cgit v1.2.1