From 63633c5b5f0cd7ef85ad6988c361916b8ef5d3ac Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Thu, 7 Nov 2002 13:39:23 -0200 Subject: better name for `lua_movethread' --- lapi.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lapi.c') diff --git a/lapi.c b/lapi.c index 2d7ec50a..bcda55c3 100644 --- a/lapi.c +++ b/lapi.c @@ -1,5 +1,5 @@ /* -** $Id: lapi.c,v 1.216 2002/11/06 19:08:00 roberto Exp roberto $ +** $Id: lapi.c,v 1.217 2002/11/07 15:37:10 roberto Exp roberto $ ** Lua API ** See Copyright Notice in lua.h */ @@ -105,7 +105,7 @@ LUA_API int lua_checkstack (lua_State *L, int size) { } -LUA_API void lua_movethread (lua_State *from, lua_State *to, int n) { +LUA_API void lua_xmove (lua_State *from, lua_State *to, int n) { int i; lua_lock(to); api_checknelems(from, n); -- cgit v1.2.3-55-g6feb