summaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lgc.c')
-rw-r--r--lgc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lgc.c b/lgc.c
index 14ef9539..ceade0a4 100644
--- a/lgc.c
+++ b/lgc.c
@@ -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 @@
23static int markobject (lua_State *L, TObject *o); 23static 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