mirror of
https://github.com/git/git
synced 2024-10-28 19:25:47 +00:00
test_decode_color: understand FAINT and ITALIC
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
a7be92acd9
commit
991eb4fc6a
1 changed files with 2 additions and 0 deletions
|
@ -42,6 +42,8 @@ test_decode_color () {
|
|||
function name(n) {
|
||||
if (n == 0) return "RESET";
|
||||
if (n == 1) return "BOLD";
|
||||
if (n == 2) return "FAINT";
|
||||
if (n == 3) return "ITALIC";
|
||||
if (n == 7) return "REVERSE";
|
||||
if (n == 30) return "BLACK";
|
||||
if (n == 31) return "RED";
|
||||
|
|
Loading…
Reference in a new issue