diff options
Diffstat (limited to 'lstring.h')
-rw-r--r-- | lstring.h | 7 |
1 files changed, 2 insertions, 5 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lstring.h,v 1.17 2000/03/10 14:38:10 roberto Exp roberto $ | 2 | ** $Id: lstring.h,v 1.18 2000/03/10 18:37:44 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 | */ |
@@ -18,7 +18,7 @@ | |||
18 | 18 | ||
19 | 19 | ||
20 | /* | 20 | /* |
21 | ** any taggedstring with mark>=FIXMARK is never collected. | 21 | ** any TString with mark>=FIXMARK is never collected. |
22 | ** Marks>=RESERVEDMARK are used to identify reserved words. | 22 | ** Marks>=RESERVEDMARK are used to identify reserved words. |
23 | */ | 23 | */ |
24 | #define FIXMARK 2 | 24 | #define FIXMARK 2 |
@@ -33,9 +33,6 @@ void luaS_free (lua_State *L, TString *ts); | |||
33 | TString *luaS_newlstr (lua_State *L, const char *str, long l); | 33 | TString *luaS_newlstr (lua_State *L, const char *str, long l); |
34 | TString *luaS_new (lua_State *L, const char *str); | 34 | TString *luaS_new (lua_State *L, const char *str); |
35 | TString *luaS_newfixed (lua_State *L, const char *str); | 35 | TString *luaS_newfixed (lua_State *L, const char *str); |
36 | GlobalVar *luaS_assertglobal (lua_State *L, TString *ts); | ||
37 | GlobalVar *luaS_assertglobalbyname (lua_State *L, const char *name); | ||
38 | int luaS_globaldefined (lua_State *L, const char *name); | ||
39 | 36 | ||
40 | 37 | ||
41 | #endif | 38 | #endif |