diff options
author | Arjen Laarhoven <arjen@yaph.org> | 2009-02-13 22:53:40 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-13 17:27:58 -0800 |
commit | dc6ebd4cc5028d59146e02e30f7945ee91974e6e (patch) | |
tree | 6028f6a7a3e2baf7b24bde5cd2819c148f0a3c68 /pretty.c | |
parent | 5cd12b85fe8ff74f202a158511ead34e8aba584c (diff) | |
download | git-dc6ebd4cc5028d59146e02e30f7945ee91974e6e.tar.gz git-dc6ebd4cc5028d59146e02e30f7945ee91974e6e.tar.xz |
Clean up use of ANSI color sequences
Remove the literal ANSI escape sequences and replace them by readable
constants.
Signed-off-by: Arjen Laarhoven <arjen@yaph.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -567,16 +567,16 @@ static size_t format_commit_item(struct strbuf *sb, const char *placeholder, return end - placeholder + 1; } if (!prefixcmp(placeholder + 1, "red")) { - strbuf_addstr(sb, "\033[31m"); + strbuf_addstr(sb, GIT_COLOR_RED); return 4; } else if (!prefixcmp(placeholder + 1, "green")) { - strbuf_addstr(sb, "\033[32m"); + strbuf_addstr(sb, GIT_COLOR_GREEN); return 6; } else if (!prefixcmp(placeholder + 1, "blue")) { - strbuf_addstr(sb, "\033[34m"); + strbuf_addstr(sb, GIT_COLOR_BLUE); return 5; } else if (!prefixcmp(placeholder + 1, "reset")) { - strbuf_addstr(sb, "\033[m"); + strbuf_addstr(sb, GIT_COLOR_RESET); return 6; } else return 0; |