diff options
Diffstat (limited to 'lbuiltin.c')
-rw-r--r-- | lbuiltin.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lbuiltin.c,v 1.83 1999/12/07 12:05:34 roberto Exp roberto $ | 2 | ** $Id: lbuiltin.c,v 1.84 1999/12/14 18:31:20 roberto Exp roberto $ |
3 | ** Built-in functions | 3 | ** Built-in functions |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -653,8 +653,8 @@ static const struct luaL_reg builtin_funcs[] = { | |||
653 | 653 | ||
654 | void luaB_predefine (lua_State *L) { | 654 | void luaB_predefine (lua_State *L) { |
655 | /* pre-register mem error messages, to avoid loop when error arises */ | 655 | /* pre-register mem error messages, to avoid loop when error arises */ |
656 | luaS_newfixedstring(L, tableEM); | 656 | luaS_newfixed(L, tableEM); |
657 | luaS_newfixedstring(L, memEM); | 657 | luaS_newfixed(L, memEM); |
658 | luaL_openl(L, builtin_funcs); | 658 | luaL_openl(L, builtin_funcs); |
659 | luaB_opentests(L); /* internal test functions (when DEBUG is on) */ | 659 | luaB_opentests(L); /* internal test functions (when DEBUG is on) */ |
660 | lua_pushstring(L, LUA_VERSION); | 660 | lua_pushstring(L, LUA_VERSION); |