aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index f79da4bc..cdfc88ce 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.308 2014/06/26 17:25:11 roberto Exp roberto $ 2** $Id: lua.h,v 1.309 2014/07/17 13:53:37 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
@@ -158,7 +158,6 @@ LUA_API int (lua_gettop) (lua_State *L);
158LUA_API void (lua_settop) (lua_State *L, int idx); 158LUA_API void (lua_settop) (lua_State *L, int idx);
159LUA_API void (lua_pushvalue) (lua_State *L, int idx); 159LUA_API void (lua_pushvalue) (lua_State *L, int idx);
160LUA_API void (lua_rotate) (lua_State *L, int idx, int n); 160LUA_API void (lua_rotate) (lua_State *L, int idx, int n);
161LUA_API void (lua_replace) (lua_State *L, int idx);
162LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx); 161LUA_API void (lua_copy) (lua_State *L, int fromidx, int toidx);
163LUA_API int (lua_checkstack) (lua_State *L, int sz); 162LUA_API int (lua_checkstack) (lua_State *L, int sz);
164 163
@@ -366,6 +365,8 @@ LUA_API void (lua_setallocf) (lua_State *L, lua_Alloc f, void *ud);
366 365
367#define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1)) 366#define lua_remove(L,idx) (lua_rotate(L, (idx), -1), lua_pop(L, 1))
368 367
368#define lua_replace(L,idx) (lua_copy(L, -1, (idx)), lua_pop(L, 1))
369
369/* }============================================================== */ 370/* }============================================================== */
370 371
371 372