more autofuck simplifications
[apps/madmutt.git] / lib-lua / runtime.c
index b96db43..f0e9093 100644 (file)
@@ -22,6 +22,8 @@
 
 #include "../alias.h"
 #include "../mutt.h"
+#include "../charset.h"
+#include "../buffy.h"
 
 static lua_State *L;
 
@@ -39,6 +41,9 @@ void luaM_initialize(void)
         {"MCore",         luaopen_MCore},
         {"MTransport",    luaopen_MTransport},
         {"MAlias",        luaopen_MAlias},
+        {"MCharset",      luaopen_MCharset},
+        {"Mime",          luaopen_Mime},
+        {"Buffy",         luaopen_Buffy},
     };
 
     int i;
@@ -56,6 +61,10 @@ void luaM_shutdown(void)
     lua_close(L);
 }
 
+lua_State *luaM_getruntime(void)
+{
+    return L;
+}
 
 int luaM_dofile(const char *filename)
 {