aboutsummaryrefslogtreecommitdiff
path: root/lbuiltin.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-14 16:42:57 -0200
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>1999-12-14 16:42:57 -0200
commit12b45c2df21beac17d49a92a4e098cb212238c1a (patch)
tree01cc8c3b861bbf952ddabce68bc556f45d764399 /lbuiltin.c
parent1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (diff)
downloadlua-12b45c2df21beac17d49a92a4e098cb212238c1a.tar.gz
lua-12b45c2df21beac17d49a92a4e098cb212238c1a.tar.bz2
lua-12b45c2df21beac17d49a92a4e098cb212238c1a.zip
luaS_newfixedstring renamed to luaS_newfixed
Diffstat (limited to 'lbuiltin.c')
-rw-r--r--lbuiltin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lbuiltin.c b/lbuiltin.c
index a28db531..374d197c 100644
--- a/lbuiltin.c
+++ b/lbuiltin.c
@@ -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
654void luaB_predefine (lua_State *L) { 654void 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);