Commit 0b1d6a5e authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Remove evil kludge.

Better fix broken code that would rely on this.
parent fe8f7fc7
......@@ -1235,10 +1235,10 @@ VLC_EXPORT( char *, vlc_dgettext, ( const char *package, const char *msgid ) );
# else
# define _(String) dgettext(PACKAGE_NAME, String)
# endif
# define N_(String) ((char*)(String))
# define N_(String) (String)
#else
# define _(String) ((char*)(String))
# define N_(String) ((char*)(String))
# define _(String) (String)
# define N_(String) (String)
#endif
/*****************************************************************************
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment