From 83415a7c5ff4f656fd740b79717977618468ed62 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 23 Nov 2002 15:38:42 +0000 Subject: [PATCH] Include gettext.h instead of . --- lib/makepath.c | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/lib/makepath.c b/lib/makepath.c index 4f954ba..d4eaade 100644 --- a/lib/makepath.c +++ b/lib/makepath.c @@ -103,16 +103,8 @@ extern int errno; /* Include this before libintl.h so we get our definition of PARAMS. */ #include "makepath.h" -#if HAVE_LOCALE_H -# include -#endif - -#if ENABLE_NLS -# include -# define _(Text) gettext (Text) -#else -# define _(Text) Text -#endif +#include "gettext.h" +#define _(msgid) gettext (msgid) #include "save-cwd.h" #include "dirname.h" -- 2.7.4