]> git.ipfire.org Git - thirdparty/git.git/commitdiff
diff: pass o->use_color directly to fill_metainfo()
authorJeff King <peff@peff.net>
Tue, 16 Sep 2025 20:20:26 +0000 (16:20 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 16 Sep 2025 20:37:06 +0000 (13:37 -0700)
We pass the use_color parameter of fill_metainfo() as a strict boolean,
using:

  want_color(o->use_color) && !pgm

to derive its value. But then inside the function, we pass it to
diff_get_color(), which expects one of the git_colorbool enum values,
and so feeds it to want_color() again.

Even though want_color() produces a strict 0/1 boolean, this doesn't
produce wrong results because want_color() is idempotent. Since
GIT_COLOR_ALWAYS and NEVER are defined as 1 and 0, and because
want_color() passes through those values, evaluating "want_color(foo)"
and "want_color(want_color(foo))" will return the same result.

But as part of a longer strategy to align the types we use for storing
these values, let's pass through the colorbool directly. To handle the
"&&" case here, we'll convert the presence of "pgm" into "NEVER", which
arguably makes the intent of the code more clear anyway.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c

diff --git a/diff.c b/diff.c
index bce26af0e3a8e2c5e0e88efee4bafdabd83e7fcb..505819c6c62234bf3cf9721929badd65ad398b02 100644 (file)
--- a/diff.c
+++ b/diff.c
@@ -4580,7 +4580,7 @@ static void run_diff_cmd(const struct external_diff *pgm,
                 */
                fill_metainfo(msg, name, other, one, two, o, p,
                              &must_show_header,
-                             want_color(o->use_color) && !pgm);
+                             pgm ? GIT_COLOR_NEVER : o->use_color);
                xfrm_msg = msg->len ? msg->buf : NULL;
        }