diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-22 15:54:49 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2005-08-22 15:54:49 -0300 |
commit | 6fcd334ca0baa76a4509ff584aff3b146b43e027 (patch) | |
tree | bb047506b7982aea1dcda71f63d36e53bbb6e64a /lvm.h | |
parent | 43ad0637ca376d22f8b64924b965d7316283ade7 (diff) | |
download | lua-6fcd334ca0baa76a4509ff584aff3b146b43e027.tar.gz lua-6fcd334ca0baa76a4509ff584aff3b146b43e027.tar.bz2 lua-6fcd334ca0baa76a4509ff584aff3b146b43e027.zip |
small improvements
Diffstat (limited to '')
-rw-r--r-- | lvm.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.3 2005/04/04 18:12:51 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.4 2005/04/25 19:24:10 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 | */ |
@@ -30,7 +30,7 @@ LUAI_FUNC void luaV_gettable (lua_State *L, const TValue *t, TValue *key, | |||
30 | StkId val); | 30 | StkId val); |
31 | LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, | 31 | LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, |
32 | StkId val); | 32 | StkId val); |
33 | LUAI_FUNC StkId luaV_execute (lua_State *L, int nexeccalls); | 33 | LUAI_FUNC void luaV_execute (lua_State *L, int nexeccalls); |
34 | LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); | 34 | LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); |
35 | 35 | ||
36 | #endif | 36 | #endif |