mirror of https://github.com/rusefi/lua.git
comment
This commit is contained in:
parent
ccc4fc9cf0
commit
233b71c092
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
** $Id: lbaselib.c,v 1.251 2010/10/28 15:36:30 roberto Exp roberto $
|
** $Id: lbaselib.c,v 1.252 2010/12/06 16:25:48 roberto Exp roberto $
|
||||||
** Basic library
|
** Basic library
|
||||||
** See Copyright Notice in lua.h
|
** See Copyright Notice in lua.h
|
||||||
*/
|
*/
|
||||||
|
@ -351,7 +351,7 @@ static int luaB_loadin (lua_State *L) {
|
||||||
static int luaB_loadstring (lua_State *L) {
|
static int luaB_loadstring (lua_State *L) {
|
||||||
lua_settop(L, 2);
|
lua_settop(L, 2);
|
||||||
lua_pushliteral(L, "tb");
|
lua_pushliteral(L, "tb");
|
||||||
return luaB_load(L); /* dostring(s, n) == load(s, n, "tb") */
|
return luaB_load(L); /* loadstring(s, n) == load(s, n, "tb") */
|
||||||
|
|
||||||
}
|
}
|
||||||
/* }====================================================== */
|
/* }====================================================== */
|
||||||
|
|
Loading…
Reference in New Issue