diff options
-rw-r--r-- | lbaselib.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lbaselib.c,v 1.251 2010/10/28 15:36:30 roberto Exp roberto $ | 2 | ** $Id: lbaselib.c,v 1.252 2010/12/06 16:25:48 roberto Exp roberto $ |
3 | ** Basic library | 3 | ** Basic library |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -351,7 +351,7 @@ static int luaB_loadin (lua_State *L) { | |||
351 | static int luaB_loadstring (lua_State *L) { | 351 | static int luaB_loadstring (lua_State *L) { |
352 | lua_settop(L, 2); | 352 | lua_settop(L, 2); |
353 | lua_pushliteral(L, "tb"); | 353 | lua_pushliteral(L, "tb"); |
354 | return luaB_load(L); /* dostring(s, n) == load(s, n, "tb") */ | 354 | return luaB_load(L); /* loadstring(s, n) == load(s, n, "tb") */ |
355 | 355 | ||
356 | } | 356 | } |
357 | /* }====================================================== */ | 357 | /* }====================================================== */ |