From 12b45c2df21beac17d49a92a4e098cb212238c1a Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 14 Dec 1999 16:42:57 -0200 Subject: luaS_newfixedstring renamed to luaS_newfixed --- lbuiltin.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lbuiltin.c') diff --git a/lbuiltin.c b/lbuiltin.c index a28db531..374d197c 100644 --- a/lbuiltin.c +++ b/lbuiltin.c @@ -1,5 +1,5 @@ /* -** $Id: lbuiltin.c,v 1.83 1999/12/07 12:05:34 roberto Exp roberto $ +** $Id: lbuiltin.c,v 1.84 1999/12/14 18:31:20 roberto Exp roberto $ ** Built-in functions ** See Copyright Notice in lua.h */ @@ -653,8 +653,8 @@ static const struct luaL_reg builtin_funcs[] = { void luaB_predefine (lua_State *L) { /* pre-register mem error messages, to avoid loop when error arises */ - luaS_newfixedstring(L, tableEM); - luaS_newfixedstring(L, memEM); + luaS_newfixed(L, tableEM); + luaS_newfixed(L, memEM); luaL_openl(L, builtin_funcs); luaB_opentests(L); /* internal test functions (when DEBUG is on) */ lua_pushstring(L, LUA_VERSION); -- cgit v1.2.3-55-g6feb