one cannot "create" a userdata.

This commit is contained in:
Roberto Ierusalimschy 1997-04-08 12:41:44 -03:00
parent c9e3d32182
commit f93704728f
1 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ static void getbyte (void)
} }
} }
static void createuserdata (void) static void newuserdata (void)
{ {
lua_Object t = lua_getparam(1); lua_Object t = lua_getparam(1);
int tag = luaL_opt_number(2, 0); int tag = luaL_opt_number(2, 0);
@ -335,7 +335,7 @@ static struct luaL_reg iolib[] = {
{"exit", io_exit}, {"exit", io_exit},
{"debug", io_debug}, {"debug", io_debug},
{"getbyte", getbyte}, {"getbyte", getbyte},
{"createud", createuserdata}, {"userdata", newuserdata},
{"print_stack", errorfb} {"print_stack", errorfb}
}; };