diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:42:57 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:42:57 -0200 |
commit | 12b45c2df21beac17d49a92a4e098cb212238c1a (patch) | |
tree | 01cc8c3b861bbf952ddabce68bc556f45d764399 /lstring.h | |
parent | 1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (diff) | |
download | lua-12b45c2df21beac17d49a92a4e098cb212238c1a.tar.gz lua-12b45c2df21beac17d49a92a4e098cb212238c1a.tar.bz2 lua-12b45c2df21beac17d49a92a4e098cb212238c1a.zip |
luaS_newfixedstring renamed to luaS_newfixed
Diffstat (limited to 'lstring.h')
-rw-r--r-- | lstring.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstring.h,v 1.13 1999/11/22 13:12:07 roberto Exp roberto $ | 2 | ** $Id: lstring.h,v 1.14 1999/11/26 18:59:20 roberto Exp roberto $ |
3 | ** String table (keep all strings handled by Lua) | 3 | ** String table (keep all strings handled by Lua) |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -32,7 +32,7 @@ void luaS_freeall (lua_State *L); | |||
32 | void luaS_free (lua_State *L, TaggedString *ts); | 32 | void luaS_free (lua_State *L, TaggedString *ts); |
33 | TaggedString *luaS_newlstr (lua_State *L, const char *str, long l); | 33 | TaggedString *luaS_newlstr (lua_State *L, const char *str, long l); |
34 | TaggedString *luaS_new (lua_State *L, const char *str); | 34 | TaggedString *luaS_new (lua_State *L, const char *str); |
35 | TaggedString *luaS_newfixedstring (lua_State *L, const char *str); | 35 | TaggedString *luaS_newfixed (lua_State *L, const char *str); |
36 | GlobalVar *luaS_assertglobal (lua_State *L, TaggedString *ts); | 36 | GlobalVar *luaS_assertglobal (lua_State *L, TaggedString *ts); |
37 | GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name); | 37 | GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name); |
38 | int luaS_globaldefined (lua_State *L, const char *name); | 38 | int luaS_globaldefined (lua_State *L, const char *name); |