Commit fbd5aa99 authored by Antoine Cellerier's avatar Antoine Cellerier

Revert "lua: Make sure it builds with --disable-nls."

This reverts commit 29847260.
I'd rather have a stable lua api (besides, vlclua_gettext is already a noop).
parent dfdcb64a
......@@ -211,9 +211,7 @@ int Open_LuaIntf( vlc_object_t *p_this )
luaopen_video( L );
luaopen_vlm( L );
luaopen_volume( L );
#ifdef ENABLE_NLS
luaopen_gettext( L );
#endif
/* clean up */
lua_pop( L, 1 );
......
......@@ -42,8 +42,6 @@ void luaopen_variables( lua_State * );
void luaopen_video( lua_State * );
void luaopen_vlm( lua_State * );
void luaopen_volume( lua_State * );
#ifdef ENABLE_NLS
void luaopen_gettext( lua_State * );
#endif
#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