diff options
author | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:33:29 -0200 |
---|---|---|
committer | Roberto Ierusalimschy <roberto@inf.puc-rio.br> | 1999-12-14 16:33:29 -0200 |
commit | 1b15206cf9aa7005fc3d48f78f60f66838f10eb5 (patch) | |
tree | 00a96c96d331417ba781b605c6c10d8daae01938 /lgc.c | |
parent | e6d56cd2d844174bd40af4c44c0f68e2115e5876 (diff) | |
download | lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.gz lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.tar.bz2 lua-1b15206cf9aa7005fc3d48f78f60f66838f10eb5.zip |
many details + code redistribution
Diffstat (limited to 'lgc.c')
-rw-r--r-- | lgc.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | ** $Id: lgc.c,v 1.34 1999/11/26 18:59:20 roberto Exp roberto $ | 2 | ** $Id: lgc.c,v 1.35 1999/12/01 19:50:08 roberto Exp roberto $ |
3 | ** Garbage Collector | 3 | ** Garbage Collector |
4 | ** See Copyright Notice in lua.h | 4 | ** See Copyright Notice in lua.h |
5 | */ | 5 | */ |
@@ -23,7 +23,7 @@ | |||
23 | static int markobject (lua_State *L, TObject *o); | 23 | static int markobject (lua_State *L, TObject *o); |
24 | 24 | ||
25 | 25 | ||
26 | /* mark a string; marks bigger than 1 cannot be changed */ | 26 | /* mark a string; marks larger than 1 cannot be changed */ |
27 | #define strmark(L, s) {if ((s)->marked == 0) (s)->marked = 1;} | 27 | #define strmark(L, s) {if ((s)->marked == 0) (s)->marked = 1;} |
28 | 28 | ||
29 | 29 | ||