Add a new header called gettext.h which is currently a no-op. To split up the gettext series I'm first submitting patches to gettextize the source tree before I add any of the Makefile and C changes needed to actually use them. Signed-off-by: Ãvar ArnfjÃrà Bjarmason <avarab@xxxxxxxxx> --- gettext.h | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) create mode 100644 gettext.h diff --git a/gettext.h b/gettext.h new file mode 100644 index 0000000..c68bbe9 --- /dev/null +++ b/gettext.h @@ -0,0 +1,9 @@ +/* + * Copyright (c) 2010 Ãvar ArnfjÃrà Bjarmason + * + * This is a skeleton no-op implementation of gettext for Git. It'll + * be replaced by something that uses libintl.h and wraps gettext() in + * a future patch series. + */ +#define N_(s) (s) +#define _(s) (s) -- 1.7.2.3 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html