aboutsummaryrefslogtreecommitdiff
path: root/lbaselib.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-12-07 09:40:42 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2010-12-07 09:40:42 -0200
commit233b71c092b742ef4b133cd2eb0adbe4f73d4ece (patch)
treebfa2ce1830e6026cdcb574da338e3857efb8c879 /lbaselib.c
parentccc4fc9cf001c19eac5be4453b76a6c438b5b1d4 (diff)
downloadlua-233b71c092b742ef4b133cd2eb0adbe4f73d4ece.tar.gz
lua-233b71c092b742ef4b133cd2eb0adbe4f73d4ece.tar.bz2
lua-233b71c092b742ef4b133cd2eb0adbe4f73d4ece.zip
comment
Diffstat (limited to 'lbaselib.c')
-rw-r--r--lbaselib.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lbaselib.c b/lbaselib.c
index 135738fd..ab64ded2 100644
--- a/lbaselib.c
+++ b/lbaselib.c
@@ -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) {
351static int luaB_loadstring (lua_State *L) { 351static 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/* }====================================================== */