From 54590a0eda10ecfdc39398d662ab3f663491067e Mon Sep 17 00:00:00 2001 From: Jeff King Date: Thu, 23 Jun 2016 13:39:07 -0400 Subject: 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 Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- color.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'color.h') diff --git a/color.h b/color.h index 2d0507ff7e..e6f82cc3eb 100644 --- a/color.h +++ b/color.h @@ -16,7 +16,8 @@ struct strbuf; * * The space for attributes is also slightly overallocated, as * the negation for some attributes is the same (e.g., nobold and nodim). - * We also allocate space for 6 attributes (even though we have only 5). + * + * We allocate space for 6 attributes. */ #define COLOR_MAXLEN 70 -- cgit v1.2.3