diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-05-27 14:11:27 -0300 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-05-27 14:11:27 -0300 |
commit | 57f8414de1968b6f9f212140f2da14cba3b6dacb (patch) | |
tree | f7ee1e6e09a272046f2897bd12d77fb1d1548136 /lvm.h | |
parent | 139d562861a939ef0a8456c84874b783a7861a24 (diff) | |
download | lua-57f8414de1968b6f9f212140f2da14cba3b6dacb.tar.gz lua-57f8414de1968b6f9f212140f2da14cba3b6dacb.tar.bz2 lua-57f8414de1968b6f9f212140f2da14cba3b6dacb.zip |
small bug in 'luaV_concat' (L->top was left incorrect in some cases)
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.7 2008/08/26 13:27:42 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.8 2009/03/10 17:14:37 roberto Exp $ |
3 | ** Lua virtual machine | 3 | ** Lua virtual machine |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -34,6 +34,6 @@ LUAI_FUNC void luaV_settable (lua_State *L, const TValue *t, TValue *key, | |||
34 | StkId val); | 34 | StkId val); |
35 | LUAI_FUNC void luaV_finishOp (lua_State *L); | 35 | LUAI_FUNC void luaV_finishOp (lua_State *L); |
36 | LUAI_FUNC void luaV_execute (lua_State *L); | 36 | LUAI_FUNC void luaV_execute (lua_State *L); |
37 | LUAI_FUNC void luaV_concat (lua_State *L, int total, int last); | 37 | LUAI_FUNC void luaV_concat (lua_State *L, int total); |
38 | 38 | ||
39 | #endif | 39 | #endif |