summaryrefslogtreecommitdiff
path: root/pretty.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-10-06 14:53:12 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-10-06 14:53:12 -0700
commit578e6021c0819d7be1179e05e7ce0e6fdb2a01b7 (patch)
treea888a1c8322c16f3218d6267c2395af75f1f32d0 /pretty.c
parentMerge branch 'ps/http-gssapi-cred-delegation' (diff)
parentpretty: avoid adding reset for %C(auto) if output is empty (diff)
downloadtgif-578e6021c0819d7be1179e05e7ce0e6fdb2a01b7.tar.xz
Merge branch 'rs/c-auto-resets-attributes'
When "%C(auto)" appears at the very beginning of the pretty format string, it did not need to issue the reset sequence, but it did. * rs/c-auto-resets-attributes: pretty: avoid adding reset for %C(auto) if output is empty
Diffstat (limited to 'pretty.c')
-rw-r--r--pretty.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pretty.c b/pretty.c
index 493edb0a44..25efbcac92 100644
--- a/pretty.c
+++ b/pretty.c
@@ -1072,7 +1072,7 @@ 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)
+ if (c->auto_color && sb->len)
strbuf_addstr(sb, GIT_COLOR_RESET);
return 7; /* consumed 7 bytes, "C(auto)" */
} else {