Commit ca35eb93 authored by Antoine Cellerier's avatar Antoine Cellerier

Make sure that vlc.gettext.N_() returns the first argument.

parent fbd5aa99
...@@ -52,7 +52,7 @@ static int vlclua_gettext( lua_State *L ) ...@@ -52,7 +52,7 @@ static int vlclua_gettext( lua_State *L )
static int vlclua_gettext_noop( lua_State *L ) static int vlclua_gettext_noop( lua_State *L )
{ {
(void)L; lua_settop( L, 1 );
return 1; return 1;
} }
......
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