diff options
author | Jeff King <peff@peff.net> | 2016-07-01 02:07:01 -0400 |
---|---|---|
committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2016-07-01 15:38:04 +0200 |
commit | f7b8cb849eb35c12c552101841fdfaf8b122918b (patch) | |
tree | ba4caef0ca70be555b766585a386689099969a11 /http-fetch.c | |
parent | be0c7fe23075541ba8715fee0fe1c605d2cbdcec (diff) | |
download | git-js/common-main.tar.gz |
common-main: call git_setup_gettext()js/common-main
This should be part of every program, as otherwise users do
not get translated error messages. However, some external
commands forgot to do so (e.g., git-credential-store). This
fixes them, and eliminates the repeated code in programs
that did remember to use it.
Signed-off-by: Jeff King <peff@peff.net>
Diffstat (limited to 'http-fetch.c')
-rw-r--r-- | http-fetch.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/http-fetch.c b/http-fetch.c index 244cd0db5d..3b556d6619 100644 --- a/http-fetch.c +++ b/http-fetch.c @@ -22,8 +22,6 @@ int cmd_main(int argc, const char **argv) int get_verbosely = 0; int get_recover = 0; - git_setup_gettext(); - while (arg < argc && argv[arg][0] == '-') { if (argv[arg][1] == 't') { get_tree = 1; |