From 3a1f3662097d918a2eeba6fd867d3fbbe48dd010 Mon Sep 17 00:00:00 2001 From: Boris Faure Date: Sun, 3 Apr 2011 09:51:13 +0000 Subject: [PATCH] e: fix compilation when E_INTERNAL is not defined SVN revision: 58295 --- src/bin/e_intl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/bin/e_intl.h b/src/bin/e_intl.h index 643ddca46..88f1b4643 100644 --- a/src/bin/e_intl.h +++ b/src/bin/e_intl.h @@ -1,5 +1,6 @@ #ifdef E_TYPEDEFS +#ifdef E_INTERNAL #if E_INTERNAL #ifdef HAVE_GETTEXT #define _(str) gettext(str) @@ -9,9 +10,10 @@ #define d_(str, dom) (str) #endif #endif +#endif /* This macro is used to just mark string for translation, this is useful - * for string lists which are not dynamically allocated + * for string lists which are not dynamically allocated */ #define N_(str) (str)