commit 569eefbf73a6c41b16aa6dc2d4f1c52ebde54084
parent 5e4ea9a831b1c1538a2a8b1250336f3954c74319
Author: Roberto Ierusalimschy <roberto@inf.puc-rio.br>
Date: Wed, 16 Jun 2004 17:22:21 -0300
detail
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/lua.c b/lua.c
@@ -1,5 +1,5 @@
/*
-** $Id: lua.c,v 1.125 2004/04/30 20:13:38 roberto Exp roberto $
+** $Id: lua.c,v 1.126 2004/05/31 18:51:50 roberto Exp roberto $
** Lua stand-alone interpreter
** See Copyright Notice in lua.h
*/
@@ -143,8 +143,7 @@ static int dostring (const char *s, const char *name) {
static int load_file (const char *name) {
- lua_pushliteral(L, "require");
- lua_rawget(L, LUA_GLOBALSINDEX);
+ lua_getglobal(L, "require");
if (!lua_isfunction(L, -1)) { /* no `require' defined? */
lua_pop(L, 1);
return file_input(name);