diff options
author | Elijah Newren <newren@gmail.com> | 2023-03-21 07:25:55 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-03-21 18:56:51 +0100 |
commit | 553d4d70d128e78fd12031f5109d0164088c784f (patch) | |
tree | b549142c43545ad5d8924eda7be6c81c91053efb /progress.c | |
parent | treewide: be explicit about dependence on gettext.h (diff) | |
download | git-553d4d70d128e78fd12031f5109d0164088c784f.tar.xz git-553d4d70d128e78fd12031f5109d0164088c784f.zip |
treewide: remove unnecessary inclusion of gettext.h
Looking at things from the opposite angle of the last patch, we had a
few files that were including gettext.h and perhaps needed it at some
point in history, but no longer require it. Remove the include.
Signed-off-by: Elijah Newren <newren@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'progress.c')
-rw-r--r-- | progress.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/progress.c b/progress.c index 9b33a2df32..44c784d75f 100644 --- a/progress.c +++ b/progress.c @@ -10,7 +10,6 @@ #define GIT_TEST_PROGRESS_ONLY #include "cache.h" -#include "gettext.h" #include "progress.h" #include "strbuf.h" #include "trace.h" |