summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lapi.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lapi.c b/lapi.c
index 358de905..0fa66eb4 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 2.53 2006/01/10 12:50:00 roberto Exp roberto $ 2** $Id: lapi.c,v 2.54 2006/06/02 15:34:00 roberto Exp roberto $
3** Lua API 3** Lua API
4** See Copyright Notice in lua.h 4** See Copyright Notice in lua.h
5*/ 5*/
@@ -199,6 +199,9 @@ LUA_API void lua_insert (lua_State *L, int idx) {
199LUA_API void lua_replace (lua_State *L, int idx) { 199LUA_API void lua_replace (lua_State *L, int idx) {
200 StkId o; 200 StkId o;
201 lua_lock(L); 201 lua_lock(L);
202 /* explicit test for incompatible code */
203 if (idx == LUA_ENVIRONINDEX && L->ci == L->base_ci)
204 luaG_runerror(L, "no calling environment");
202 api_checknelems(L, 1); 205 api_checknelems(L, 1);
203 o = index2adr(L, idx); 206 o = index2adr(L, idx);
204 api_checkvalidindex(L, o); 207 api_checkvalidindex(L, o);