summaryrefslogtreecommitdiff
path: root/color.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2016-06-23 17:38:44 (GMT)
committerJunio C Hamano <gitster@pobox.com>2016-06-23 18:32:51 (GMT)
commit5621068f3d3c537b79b76201928c0b06025479ee (patch)
treedbb28952f325a01983a48efb2de98682fa165159 /color.c
parentdf8e472cc1bbd14a60d22b0b124f07046c6e1fa2 (diff)
downloadgit-5621068f3d3c537b79b76201928c0b06025479ee.zip
git-5621068f3d3c537b79b76201928c0b06025479ee.tar.gz
git-5621068f3d3c537b79b76201928c0b06025479ee.tar.bz2
color: allow "no-" for negating attributes
Using "no-bold" rather than "nobold" is easier to read and more natural to type (to me, anyway, even though I was the person who introduced "nobold" in the first place). It's easy to allow both. 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.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/color.c b/color.c
index 63e7b0c..a22d835 100644
--- a/color.c
+++ b/color.c
@@ -141,8 +141,10 @@ static int parse_attr(const char *name, size_t len)
int negate = 0;
int i;
- if (skip_prefix_mem(name, len, "no", &name, &len))
+ if (skip_prefix_mem(name, len, "no", &name, &len)) {
+ skip_prefix_mem(name, len, "-", &name, &len);
negate = 1;
+ }
for (i = 0; i < ARRAY_SIZE(attrs); i++) {
if (attrs[i].len == len && !memcmp(attrs[i].name, name, len))