diff options
Diffstat (limited to 'src/common.h')
-rw-r--r-- | src/common.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common.h b/src/common.h index 50cb6bd..68fe931 100644 --- a/src/common.h +++ b/src/common.h @@ -60,10 +60,10 @@ #ifdef ENABLE_NLS # include <libintl.h> #else -# define gettext(s) (s) +# define gettext(s) s #endif -# define _(s) gettext(s) -# define N_(s) (s) +#define _(s) gettext(s) +#define N_(s) s /* The color temperature when no adjustment is applied. */ |