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 /remote-curl.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 'remote-curl.c')
-rw-r--r-- | remote-curl.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/remote-curl.c b/remote-curl.c index d39f4cf8a6..6b83b7783e 100644 --- a/remote-curl.c +++ b/remote-curl.c @@ -989,8 +989,6 @@ int cmd_main(int argc, const char **argv) struct strbuf buf = STRBUF_INIT; int nongit; - git_setup_gettext(); - setup_git_directory_gently(&nongit); if (argc < 2) { error("remote-curl: usage: git remote-curl <remote> [<url>]"); |