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 --- lstring.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lstring.h') diff --git a/lstring.h b/lstring.h index 31feabdb..040a590c 100644 --- a/lstring.h +++ b/lstring.h @@ -1,5 +1,5 @@ /* -** $Id: lstring.h,v 1.13 1999/11/22 13:12:07 roberto Exp roberto $ +** $Id: lstring.h,v 1.14 1999/11/26 18:59:20 roberto Exp roberto $ ** String table (keep all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -32,7 +32,7 @@ void luaS_freeall (lua_State *L); void luaS_free (lua_State *L, TaggedString *ts); TaggedString *luaS_newlstr (lua_State *L, const char *str, long l); TaggedString *luaS_new (lua_State *L, const char *str); -TaggedString *luaS_newfixedstring (lua_State *L, const char *str); +TaggedString *luaS_newfixed (lua_State *L, const char *str); GlobalVar *luaS_assertglobal (lua_State *L, TaggedString *ts); GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name); int luaS_globaldefined (lua_State *L, const char *name); -- cgit v1.2.3-55-g6feb