diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-17 14:20:01 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-12-17 14:20:01 -0200 |
commit | c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4 (patch) | |
tree | 9f26c632fa0215c21260a81f6fad1a79678f8173 /lvm.h | |
parent | 0bbdddc86b1353fec36ae886b4142986f3c4713f (diff) | |
download | lua-c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4.tar.gz lua-c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4.tar.bz2 lua-c3a6f3fa1c6360d4ea2e32f9415f51e8e55093b4.zip |
'lua_objlen' replaced by 'lua_rawlen', 'lua_len', and 'luaL_len'
Diffstat (limited to '')
-rw-r--r-- | lvm.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lvm.h,v 2.12 2009/11/06 17:05:34 roberto Exp roberto $ | 2 | ** $Id: lvm.h,v 2.13 2009/11/19 19:04:58 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 | */ |
@@ -37,5 +37,6 @@ LUAI_FUNC void luaV_execute (lua_State *L); | |||
37 | LUAI_FUNC void luaV_concat (lua_State *L, int total); | 37 | LUAI_FUNC void luaV_concat (lua_State *L, int total); |
38 | LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb, | 38 | LUAI_FUNC void luaV_arith (lua_State *L, StkId ra, const TValue *rb, |
39 | const TValue *rc, TMS op); | 39 | const TValue *rc, TMS op); |
40 | LUAI_FUNC void luaV_objlen (lua_State *L, StkId ra, const TValue *rb); | ||
40 | 41 | ||
41 | #endif | 42 | #endif |