diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-19 09:45:25 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2002-03-19 09:45:25 -0300 |
commit | 938092489b9df19c9da7481c68d74dd7e0104949 (patch) | |
tree | 0f7ce5978e29afb39677045e817a850f23148215 /lvm.h | |
parent | 578d1da00d4144caaf2ea7406680f76adcfc5af1 (diff) | |
download | lua-938092489b9df19c9da7481c68d74dd7e0104949.tar.gz lua-938092489b9df19c9da7481c68d74dd7e0104949.tar.bz2 lua-938092489b9df19c9da7481c68d74dd7e0104949.zip |
erroneous objects may not live in the stack
Diffstat (limited to 'lvm.h')
-rw-r--r-- | lvm.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 1.36 2002/02/07 17:24:05 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 1.37 2002/03/04 21:33:09 roberto Exp roberto $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -21,8 +21,8 @@ | |||
21 | 21 | ||
22 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); | 22 | const TObject *luaV_tonumber (const TObject *obj, TObject *n); |
23 | int luaV_tostring (lua_State *L, TObject *obj); | 23 | int luaV_tostring (lua_State *L, TObject *obj); |
24 | void luaV_gettable (lua_State *L, StkId t, TObject *key, StkId res); | 24 | void luaV_gettable (lua_State *L, const TObject *t, TObject *key, StkId res); |
25 | void luaV_settable (lua_State *L, StkId t, TObject *key, StkId val); | 25 | void luaV_settable (lua_State *L, const TObject *t, TObject *key, StkId val); |
26 | StkId luaV_execute (lua_State *L); | 26 | StkId luaV_execute (lua_State *L); |
27 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); | 27 | int luaV_lessthan (lua_State *L, const TObject *l, const TObject *r); |
28 | void luaV_strconc (lua_State *L, int total, int last); | 28 | void luaV_strconc (lua_State *L, int total, int last); |