aboutsummaryrefslogtreecommitdiff
path: root/lua.h
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-07 13:39:23 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2002-11-07 13:39:23 -0200
commit63633c5b5f0cd7ef85ad6988c361916b8ef5d3ac (patch)
tree459aeb4eb83b241fda35d0b9606a5b548b57b93c /lua.h
parentdff9be4224a1cd0f338b544b9e01d42f0f4e537f (diff)
downloadlua-63633c5b5f0cd7ef85ad6988c361916b8ef5d3ac.tar.gz
lua-63633c5b5f0cd7ef85ad6988c361916b8ef5d3ac.tar.bz2
lua-63633c5b5f0cd7ef85ad6988c361916b8ef5d3ac.zip
better name for `lua_movethread'
Diffstat (limited to 'lua.h')
-rw-r--r--lua.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua.h b/lua.h
index 6bcc2d4d..5b0270c8 100644
--- a/lua.h
+++ b/lua.h
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lua.h,v 1.161 2002/10/25 21:31:28 roberto Exp roberto $ 2** $Id: lua.h,v 1.162 2002/11/06 19:08:00 roberto Exp roberto $
3** Lua - An Extensible Extension Language 3** Lua - An Extensible Extension Language
4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil 4** Tecgraf: Computer Graphics Technology Group, PUC-Rio, Brazil
5** http://www.lua.org mailto:info@lua.org 5** http://www.lua.org mailto:info@lua.org
@@ -123,7 +123,7 @@ LUA_API void lua_insert (lua_State *L, int idx);
123LUA_API void lua_replace (lua_State *L, int idx); 123LUA_API void lua_replace (lua_State *L, int idx);
124LUA_API int lua_checkstack (lua_State *L, int sz); 124LUA_API int lua_checkstack (lua_State *L, int sz);
125 125
126LUA_API void lua_movethread (lua_State *from, lua_State *to, int n); 126LUA_API void lua_xmove (lua_State *from, lua_State *to, int n);
127 127
128 128
129/* 129/*