diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-06 15:00:19 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2001-06-06 15:00:19 -0300 |
commit | d5b83ead90fba27faa344c72406d85987d2460a4 (patch) | |
tree | 96d73c1b872b6b01a28c0586b871d37185034ba9 /lua.c | |
parent | da673d31aaa05e8dff60c0b601b9f15c4f9182a8 (diff) | |
download | lua-d5b83ead90fba27faa344c72406d85987d2460a4.tar.gz lua-d5b83ead90fba27faa344c72406d85987d2460a4.tar.bz2 lua-d5b83ead90fba27faa344c72406d85987d2460a4.zip |
new implementation for userdatas, without `keys'
Diffstat (limited to 'lua.c')
-rw-r--r-- | lua.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.c,v 1.65 2001/03/09 18:05:05 roberto Exp roberto $ | 2 | ** $Id: lua.c,v 1.66 2001/03/26 14:31:49 roberto Exp roberto $ |
3 | ** Lua stand-alone interpreter | 3 | ** Lua stand-alone interpreter |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -308,7 +308,7 @@ static void getstacksize (int argc, l_char *argv[], struct Options *opt) { | |||
308 | 308 | ||
309 | 309 | ||
310 | static void register_getargs (l_char *argv[]) { | 310 | static void register_getargs (l_char *argv[]) { |
311 | lua_pushuserdata(L, argv); | 311 | lua_newuserdatabox(L, argv); |
312 | lua_pushcclosure(L, l_getargs, 1); | 312 | lua_pushcclosure(L, l_getargs, 1); |
313 | lua_setglobal(L, l_s("getargs")); | 313 | lua_setglobal(L, l_s("getargs")); |
314 | } | 314 | } |