aboutsummaryrefslogtreecommitdiff
path: root/lapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lapi.c')
-rw-r--r--lapi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lapi.c b/lapi.c
index 88ed5dd6..2a8283a4 100644
--- a/lapi.c
+++ b/lapi.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lapi.c,v 1.240 2003/07/07 13:34:25 roberto Exp roberto $ 2** $Id: lapi.c,v 1.241 2003/08/15 13:48:53 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*/
@@ -718,9 +718,9 @@ LUA_API int lua_load (lua_State *L, lua_Chunkreader reader, void *data,
718 int c; 718 int c;
719 lua_lock(L); 719 lua_lock(L);
720 if (!chunkname) chunkname = "?"; 720 if (!chunkname) chunkname = "?";
721 luaZ_init(&z, reader, data, chunkname); 721 luaZ_init(&z, reader, data);
722 c = luaZ_lookahead(&z); 722 c = luaZ_lookahead(&z);
723 status = luaD_protectedparser(L, &z, (c == LUA_SIGNATURE[0])); 723 status = luaD_protectedparser(L, &z, (c == LUA_SIGNATURE[0]), chunkname);
724 lua_unlock(L); 724 lua_unlock(L);
725 return status; 725 return status;
726} 726}