You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
klish/plugins/lua/plugin_fini.c

14 lines
191 B

#include <stdlib.h>
#include "private.h"
CLISH_PLUGIN_FINI(clish_plugin_lua_fini)
{
lua_State *L = clish_shell__del_udata(clish_shell, LUA_UDATA);
if (L)
lua_close(L);
return (0);
}