Só pra não perder se der merda.

This commit is contained in:
Diego Nehab
2004-06-04 15:15:45 +00:00
parent 63d60223da
commit 9ed7f955e5
28 changed files with 194 additions and 200 deletions

View File

@ -76,9 +76,8 @@ static UC b64unbase[256];
\*-------------------------------------------------------------------------*/
MIME_API int luaopen_mime(lua_State *L)
{
lua_pushstring(L, MIME_LIBNAME);
lua_setglobal(L, "MIME_LIBNAME");
luaL_openlib(L, MIME_LIBNAME, func, 0);
lua_newtable(L);
luaL_openlib(L, NULL, func, 0);
/* initialize lookup tables */
qpsetup(qpclass, qpunbase);
b64setup(b64unbase);
@ -626,7 +625,6 @@ static int eolprocess(int c, int last, const char *marker,
luaL_putchar(buffer, c);
return 0;
}
}
/*-------------------------------------------------------------------------*\