diff options
Diffstat (limited to 'fish/options.h')
-rw-r--r-- | fish/options.h | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/fish/options.h b/fish/options.h index f0f5a07a..29117f64 100644 --- a/fish/options.h +++ b/fish/options.h @@ -19,22 +19,12 @@ #ifndef OPTIONS_H #define OPTIONS_H -#ifdef HAVE_GETTEXT -#include "gettext.h" #ifndef _ #define _(str) dgettext(PACKAGE, (str)) #endif #ifndef N_ #define N_(str) dgettext(PACKAGE, (str)) #endif -#else -#ifndef _ -#define _(str) str -#endif -#ifndef _ -#define N_(str) str -#endif -#endif #ifndef STREQ #define STREQ(a,b) (strcmp((a),(b)) == 0) |