summaryrefslogtreecommitdiff
path: root/src/lib_base.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib_base.c')
-rw-r--r--src/lib_base.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib_base.c b/src/lib_base.c
index 47530f93..1a9a6df2 100644
--- a/src/lib_base.c
+++ b/src/lib_base.c
@@ -614,8 +614,8 @@ LUALIB_API int luaopen_base(lua_State *L)
614 settabV(L, lj_tab_setstr(L, env, lj_str_newlit(L, "_G")), env); 614 settabV(L, lj_tab_setstr(L, env, lj_str_newlit(L, "_G")), env);
615 lua_pushliteral(L, LUA_VERSION); /* top-3. */ 615 lua_pushliteral(L, LUA_VERSION); /* top-3. */
616 newproxy_weaktable(L); /* top-2. */ 616 newproxy_weaktable(L); /* top-2. */
617 LJ_LIB_REG_(L, "_G", base); 617 LJ_LIB_REG(L, "_G", base);
618 LJ_LIB_REG(L, coroutine); 618 LJ_LIB_REG(L, LUA_COLIBNAME, coroutine);
619 return 2; 619 return 2;
620} 620}
621 621