diff options
author | Jim Meyering <jim@meyering.net> | 2002-11-23 15:42:11 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2002-11-23 15:42:11 +0000 |
commit | 4372bf561910a6330138c570bf8443f7a6f5b2b8 (patch) | |
tree | 5eacd59c8bc67e3321b2577d020b2f42659caabd | |
parent | 01ff25beb7401f2ec4401fe64f170b3b28268e61 (diff) | |
download | coreutils-4372bf561910a6330138c570bf8443f7a6f5b2b8.tar.xz |
Update from gnulib.
-rw-r--r-- | lib/unicodeio.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/unicodeio.c b/lib/unicodeio.c index 049b9afd0..2e7ffc9d0 100644 --- a/lib/unicodeio.c +++ b/lib/unicodeio.c @@ -20,7 +20,7 @@ /* Written by Bruno Haible <haible@clisp.cons.org>. */ /* Note: This file requires the locale_charset() function. See in - libiconv-1.7/libcharset/INTEGRATE for how to obtain it. */ + libiconv-1.8/libcharset/INTEGRATE for how to obtain it. */ #ifdef HAVE_CONFIG_H # include <config.h> @@ -48,13 +48,9 @@ extern int errno; #include <error.h> -#if ENABLE_NLS -# include <libintl.h> -#else -# define gettext(Text) Text -#endif -#define _(Text) gettext (Text) -#define N_(Text) Text +#include "gettext.h" +#define _(msgid) gettext (msgid) +#define N_(msgid) msgid /* Specification. */ #include "unicodeio.h" |