Browse Source

one cannot "create" a userdata.

Roberto Ierusalimschy 28 years ago
parent
commit
f93704728f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      iolib.c

+ 2 - 2
iolib.c

@@ -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}
 };