diff options
author | Elijah Newren <newren@gmail.com> | 2023-03-21 07:25:54 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-03-21 18:56:51 +0100 |
commit | f394e093df10f1867d9bb2180b3789ee61124aed (patch) | |
tree | b2fdeb7d0022089e5b2d80b495bf8966e71a697a /color.c | |
parent | treewide: remove unnecessary cache.h inclusion from a few headers (diff) | |
download | git-f394e093df10f1867d9bb2180b3789ee61124aed.tar.xz git-f394e093df10f1867d9bb2180b3789ee61124aed.zip |
treewide: be explicit about dependence on gettext.h
Dozens of files made use of gettext functions, without explicitly
including gettext.h. This made it more difficult to find which files
could remove a dependence on cache.h. Make C files explicitly include
gettext.h if they are using it.
However, while compat/fsmonitor/fsm-ipc-darwin.c should also gain an
include of gettext.h, it was left out to avoid conflicting with an
in-flight topic.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'color.c')
-rw-r--r-- | color.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,6 +1,7 @@ #include "cache.h" #include "config.h" #include "color.h" +#include "gettext.h" #include "hex.h" static int git_use_color_default = GIT_COLOR_AUTO; |