aboutsummaryrefslogtreecommitdiff
path: root/color.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-06-23 13:39:07 -0400
committerJunio C Hamano <gitster@pobox.com>2016-06-23 11:32:51 -0700
commit54590a0eda10ecfdc39398d662ab3f663491067e (patch)
tree9c87874d0eda60f8b17ef68274c1fa5a4ec3a5b8 /color.c
parent5621068f3d3c537b79b76201928c0b06025479ee (diff)
downloadgit-54590a0eda10ecfdc39398d662ab3f663491067e.tar.gz
git-54590a0eda10ecfdc39398d662ab3f663491067e.tar.xz
color: support "italic" attribute
We already support bold, underline, and similar attributes. Let's add italic to the mix. According to the Wikipedia page on ANSI colors, this attribute is "not widely supported", but it does seem to work on my xterm. We don't have to bump the maximum color size because we were already over-allocating it (but we do adjust the comment appropriately). Requested-by: Simon Courtois <scourtois@cubyx.fr> Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'color.c')
-rw-r--r--color.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/color.c b/color.c
index a22d83584..b6933a16f 100644
--- a/color.c
+++ b/color.c
@@ -133,6 +133,7 @@ static int parse_attr(const char *name, size_t len)
#define ATTR(x, val, neg) { (x), sizeof(x)-1, (val), (neg) }
ATTR("bold", 1, 22),
ATTR("dim", 2, 22),
+ ATTR("italic", 3, 23),
ATTR("ul", 4, 24),
ATTR("blink", 5, 25),
ATTR("reverse", 7, 27)