1
0
mirror of https://github.com/lua/lua synced 2026-06-08 15:34:49 +00:00

one cannot "create" a userdata.

This commit is contained in:
Roberto Ierusalimschy
1997-04-08 12:41:44 -03:00
parent c9e3d32182
commit f93704728f
+2 -2
View File
@@ -295,7 +295,7 @@ static void getbyte (void)
}
}
static void createuserdata (void)
static void newuserdata (void)
{
lua_Object t = lua_getparam(1);
int tag = luaL_opt_number(2, 0);
@@ -335,7 +335,7 @@ static struct luaL_reg iolib[] = {
{"exit", io_exit},
{"debug", io_debug},
{"getbyte", getbyte},
{"createud", createuserdata},
{"userdata", newuserdata},
{"print_stack", errorfb}
};