summaryrefslogtreecommitdiff
path: root/color.h
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-06-23 17:39:07 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-23 18:32:51 (GMT)
commit54590a0eda10ecfdc39398d662ab3f663491067e (patch)
tree9c87874d0eda60f8b17ef68274c1fa5a4ec3a5b8 /color.h
parent5621068f3d3c537b79b76201928c0b06025479ee (diff)
downloadgit-54590a0eda10ecfdc39398d662ab3f663491067e.zip
git-54590a0eda10ecfdc39398d662ab3f663491067e.tar.gz
git-54590a0eda10ecfdc39398d662ab3f663491067e.tar.bz2
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.h')
-rw-r--r--color.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/color.h b/color.h
index 2d0507f..e6f82cc 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