e: fix compilation when E_INTERNAL is not defined

SVN revision: 58295
This commit is contained in:
Boris Faure 2011-04-03 09:51:13 +00:00
parent 10b6fe25eb
commit 3a1f366209
1 changed files with 3 additions and 1 deletions

View File

@ -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)