aboutsummaryrefslogtreecommitdiff
path: root/ltests.c
diff options
context:
space:
mode:
Diffstat (limited to 'ltests.c')
-rw-r--r--ltests.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/ltests.c b/ltests.c
index 3496a2b1..3d702b06 100644
--- a/ltests.c
+++ b/ltests.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: ltests.c,v 1.125 2002/06/13 13:44:50 roberto Exp roberto $ 2** $Id: ltests.c,v 1.126 2002/06/18 15:19:27 roberto Exp roberto $
3** Internal Module for Debugging of the Lua Implementation 3** Internal Module for Debugging of the Lua Implementation
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -478,11 +478,14 @@ static int closestate (lua_State *L) {
478} 478}
479 479
480static int doremote (lua_State *L) { 480static int doremote (lua_State *L) {
481 lua_State *L1; 481 lua_State *L1 = cast(lua_State *,cast(unsigned long,luaL_check_number(L, 1)));
482 const char *code = luaL_check_string(L, 2); 482 size_t lcode;
483 const char *code = luaL_check_lstr(L, 2, &lcode);
483 int status; 484 int status;
484 L1 = cast(lua_State *, cast(unsigned long, luaL_check_number(L, 1))); 485 lua_settop(L1, 0);
485 status = lua_dostring(L1, code); 486 status = luaL_loadbuffer(L1, code, lcode, code);
487 if (status == 0)
488 status = lua_pcall(L1, 0, LUA_MULTRET);
486 if (status != 0) { 489 if (status != 0) {
487 lua_pushnil(L); 490 lua_pushnil(L);
488 lua_pushnumber(L, status); 491 lua_pushnumber(L, status);