From: Jim Meyering Date: Wed, 29 Nov 1995 19:47:42 +0000 (+0000) Subject: [_]: Define it. X-Git-Tag: TEXTUTILS-1_13F~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=cfc48b6ee98c48b8eacb8e35ad7d10e988c4c0d6;p=thirdparty%2Fcoreutils.git [_]: Define it. --- diff --git a/src/system.h b/src/system.h index 3b7f9f27c1..aecd17fe1d 100644 --- a/src/system.h +++ b/src/system.h @@ -312,6 +312,10 @@ char *alloca (); #define ISUPPER(c) (ISASCII (c) && isupper (c)) #define ISXDIGIT(c) (ISASCII (c) && isxdigit (c)) +/* Disable string localization for the time being. */ +#undef _ +#define _(String) String + #ifndef __P #if defined (__GNUC__) || (defined (__STDC__) && __STDC__) #define __P(args) args