From 0df6635711230ab306710056f621b6da59fac5ea Mon Sep 17 00:00:00 2001 From: Roberto Ierusalimschy Date: Wed, 21 Aug 2013 17:09:51 -0300 Subject: "fixed" objects kept in a separated list (instead of being kept in 'allgc' list with a bit marking them) --- lstring.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lstring.h') diff --git a/lstring.h b/lstring.h index e2435300..e6f08106 100644 --- a/lstring.h +++ b/lstring.h @@ -1,5 +1,5 @@ /* -** $Id: lstring.h,v 1.50 2013/08/16 18:55:49 roberto Exp roberto $ +** $Id: lstring.h,v 1.51 2013/08/21 19:21:16 roberto Exp roberto $ ** String table (keep all strings handled by Lua) ** See Copyright Notice in lua.h */ @@ -19,8 +19,6 @@ #define luaS_newliteral(L, s) (luaS_newlstr(L, "" s, \ (sizeof(s)/sizeof(char))-1)) -#define luaS_fix(s) setbits((s)->tsv.marked, bit2mask(FIXEDBIT, LOCALBIT)) - /* ** test whether a string is a reserved word -- cgit v1.2.3-55-g6feb