From d5b83ead90fba27faa344c72406d85987d2460a4 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy <roberto@inf.puc-rio.br> Date: Wed, 6 Jun 2001 15:00:19 -0300 Subject: new implementation for userdatas, without `keys' --- lua.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lua.c') diff --git a/lua.c b/lua.c index fc2e89b0..34333f6f 100644 --- a/lua.c +++ b/lua.c @@ -1,5 +1,5 @@ /* -** $Id: lua.c,v 1.65 2001/03/09 18:05:05 roberto Exp roberto $ +** $Id: lua.c,v 1.66 2001/03/26 14:31:49 roberto Exp roberto $ ** Lua stand-alone interpreter ** See Copyright Notice in lua.h */ @@ -308,7 +308,7 @@ static void getstacksize (int argc, l_char *argv[], struct Options *opt) { static void register_getargs (l_char *argv[]) { - lua_pushuserdata(L, argv); + lua_newuserdatabox(L, argv); lua_pushcclosure(L, l_getargs, 1); lua_setglobal(L, l_s("getargs")); } -- cgit v1.2.3-55-g6feb