From ab52fc6097569cf51bc0c55dd5b6b1329eefd970 Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Tue, 30 Apr 2002 10:01:48 -0300 Subject: new macro to `fix' strings --- lstring.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'lstring.h') diff --git a/lstring.h b/lstring.h index 2fbf1daf..d1b0f14a 100644 --- a/lstring.h +++ b/lstring.h @@ -1,5 +1,5 @@ /* -** $Id: lstring.h,v 1.34 2001/08/31 19:46:07 roberto Exp $ +** $Id: lstring.h,v 1.35 2001/11/28 20:13:13 roberto Exp roberto $ ** String table (keep all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -30,6 +30,8 @@ #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ (sizeof(s)/sizeof(char))-1)) +#define luaS_fix(s) ((s)->tsv.marked = FIXMARK) + void luaS_resize (lua_State *L, int newsize); Udata *luaS_newudata (lua_State *L, size_t s); void luaS_freeall (lua_State *L); -- cgit v1.2.1