summaryrefslogtreecommitdiff
path: root/src/lbaselib.c
diff options
context:
space:
mode:
authorPeter Drahoš <drahosp@gmail.com>2012-03-09 15:29:03 +0100
committerPeter Drahoš <drahosp@gmail.com>2012-03-09 15:29:03 +0100
commit1285f9a97c14116891c922b047594eb2175e5b1b (patch)
tree7282c20d4b36862a13a2f4fee812062331346058 /src/lbaselib.c
parent068edf316ea60ba0d32c4e50af3b9e1711876aa2 (diff)
downloadlua-1285f9a97c14116891c922b047594eb2175e5b1b.tar.gz
Lua 5.1.5 update using official release package.
Diffstat (limited to 'src/lbaselib.c')
-rw-r--r--src/lbaselib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lbaselib.c b/src/lbaselib.c
index 2a4c079..2ab550b 100644
--- a/src/lbaselib.c
+++ b/src/lbaselib.c
@@ -631,7 +631,7 @@ static void base_open (lua_State *L) {
luaL_register(L, "_G", base_funcs);
lua_pushliteral(L, LUA_VERSION);
lua_setglobal(L, "_VERSION"); /* set global _VERSION */
- /* `ipairs' and `pairs' need auxliliary functions as upvalues */
+ /* `ipairs' and `pairs' need auxiliary functions as upvalues */
auxopen(L, "ipairs", luaB_ipairs, ipairsaux);
auxopen(L, "pairs", luaB_pairs, luaB_next);
/* `newproxy' needs a weaktable as upvalue */