diff --git a/src/libinput-plugin-lua.c b/src/libinput-plugin-lua.c index 6f4eb72a..86158a60 100644 --- a/src/libinput-plugin-lua.c +++ b/src/libinput-plugin-lua.c @@ -1221,8 +1221,8 @@ libinput_lua_plugin_init_lua(struct libinput *libinput, luaopen_base(L); static const char *allowed_funcs[] = { - "assert", "error", "ipairs", "next", "pcall", "pairs", - "print", "tonumber", "tostring", "type", "xpcall", + "assert", "error", "ipairs", "next", "pcall", "pairs", + "print", "select", "tonumber", "tostring", "type", "xpcall", }; ARRAY_FOR_EACH(allowed_funcs, func) { lua_getglobal(L, *func);