]> git.ipfire.org Git - thirdparty/git.git/blame - gettext.c
Git 1.7.8-rc2
[thirdparty/git.git] / gettext.c
CommitLineData
30955229
JN
1/*
2 * Copyright (c) 2010 Ævar Arnfjörð Bjarmason
3 */
4
5#include "git-compat-util.h"
6#include "gettext.h"
7
8int use_gettext_poison(void)
9{
10 static int poison_requested = -1;
11 if (poison_requested == -1)
12 poison_requested = getenv("GIT_GETTEXT_POISON") ? 1 : 0;
13 return poison_requested;
14}