summaryrefslogtreecommitdiff
path: root/color.c
diff options
context:
space:
mode:
authorGlen Choo <chooglen@google.com>2023-06-28 19:26:20 (GMT)
committerJunio C Hamano <gitster@pobox.com>2023-06-28 21:06:38 (GMT)
commit97eeeea2dc069a1fcb03db99ef3810ebe3056188 (patch)
tree44d42f1a7533469948e7d5f181a34198ef109123 /color.c
parent6ff334181cfb6485d3ba50843038209a2a253907 (diff)
downloadgit-97eeeea2dc069a1fcb03db99ef3810ebe3056188.zip
git-97eeeea2dc069a1fcb03db99ef3810ebe3056188.tar.gz
git-97eeeea2dc069a1fcb03db99ef3810ebe3056188.tar.bz2
config: inline git_color_default_config
git_color_default_config() is a shorthand for calling two other config callbacks. There are no other non-static functions that do this and it will complicate our refactoring of config_fn_t so inline it instead. Signed-off-by: Glen Choo <chooglen@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'color.c')
-rw-r--r--color.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/color.c b/color.c
index 83abb11..b24b195 100644
--- a/color.c
+++ b/color.c
@@ -430,14 +430,6 @@ int git_color_config(const char *var, const char *value, void *cb UNUSED)
return 0;
}
-int git_color_default_config(const char *var, const char *value, void *cb)
-{
- if (git_color_config(var, value, cb) < 0)
- return -1;
-
- return git_default_config(var, value, cb);
-}
-
void color_print_strbuf(FILE *fp, const char *color, const struct strbuf *sb)
{
if (*color)