diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-11-09 17:10:48 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 2009-11-09 17:10:48 -0200 |
commit | 7fe405739cebfa49e91683a3bdf23dd241c8808e (patch) | |
tree | 268ab7bc790ee142f143b2e17ba6fab5db42d010 /lua.h | |
parent | 1ce819333d3f02d14d983dbddb236e72d4555c7f (diff) | |
download | lua-7fe405739cebfa49e91683a3bdf23dd241c8808e.tar.gz lua-7fe405739cebfa49e91683a3bdf23dd241c8808e.tar.bz2 lua-7fe405739cebfa49e91683a3bdf23dd241c8808e.zip |
renaming: 'lua_upvaladdr' -> 'lua_upvalueid',
'lua_upvaljoin' -> 'lua_upvaluejoin'
Diffstat (limited to 'lua.h')
-rw-r--r-- | lua.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lua.h,v 1.248 2009/11/05 17:26:00 roberto Exp roberto $ | 2 | ** $Id: lua.h,v 1.249 2009/11/09 18:55:17 roberto Exp roberto $ |
3 | ** Lua - A Scripting Language | 3 | ** Lua - A Scripting Language |
4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) | 4 | ** Lua.org, PUC-Rio, Brazil (http://www.lua.org) |
5 | ** See Copyright Notice at the end of this file | 5 | ** See Copyright Notice at the end of this file |
@@ -381,9 +381,9 @@ LUA_API const char *(lua_setlocal) (lua_State *L, const lua_Debug *ar, int n); | |||
381 | LUA_API const char *(lua_getupvalue) (lua_State *L, int funcindex, int n); | 381 | LUA_API const char *(lua_getupvalue) (lua_State *L, int funcindex, int n); |
382 | LUA_API const char *(lua_setupvalue) (lua_State *L, int funcindex, int n); | 382 | LUA_API const char *(lua_setupvalue) (lua_State *L, int funcindex, int n); |
383 | 383 | ||
384 | LUA_API void *(lua_upvaladdr) (lua_State *L, int fidx, int n); | 384 | LUA_API void *(lua_upvalueid) (lua_State *L, int fidx, int n); |
385 | LUA_API void (lua_upvaljoin) (lua_State *L, int fidx1, int n1, | 385 | LUA_API void (lua_upvaluejoin) (lua_State *L, int fidx1, int n1, |
386 | int fidx2, int n2); | 386 | int fidx2, int n2); |
387 | 387 | ||
388 | LUA_API int (lua_sethook) (lua_State *L, lua_Hook func, int mask, int count); | 388 | LUA_API int (lua_sethook) (lua_State *L, lua_Hook func, int mask, int count); |
389 | LUA_API lua_Hook (lua_gethook) (lua_State *L); | 389 | LUA_API lua_Hook (lua_gethook) (lua_State *L); |