aboutsummaryrefslogtreecommitdiff
path: root/lgc.c
diff options
context:
space:
mode:
authorRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-21 10:52:33 -0300
committerRoberto Ierusalimschy <roberto@inf.puc-rio.br>2014-03-21 10:52:33 -0300
commitda4811238ab48446545621389cb07051982a8279 (patch)
tree56b1a056b383cb09295630e835ad12211036bd6d /lgc.c
parentf96872a534f1d10788d5607d634cc77e25a887ff (diff)
downloadlua-da4811238ab48446545621389cb07051982a8279.tar.gz
lua-da4811238ab48446545621389cb07051982a8279.tar.bz2
lua-da4811238ab48446545621389cb07051982a8279.zip
details (typos in comments)
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 93e22f0f..537c38fe 100644
--- a/lgc.c
+++ b/lgc.c
@@ -1,5 +1,5 @@
1/* 1/*
2** $Id: lgc.c,v 2.177 2014/02/18 13:46:26 roberto Exp roberto $ 2** $Id: lgc.c,v 2.178 2014/02/19 13:51:09 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*/
@@ -169,7 +169,7 @@ void luaC_barrierback_ (lua_State *L, GCObject *o) {
169/* 169/*
170** barrier for assignments to closed upvalues. Because upvalues are 170** barrier for assignments to closed upvalues. Because upvalues are
171** shared among closures, it is impossible to know the color of all 171** shared among closures, it is impossible to know the color of all
172** closured pointing to it. So, we assume that the object being assigned 172** closures pointing to it. So, we assume that the object being assigned
173** must be marked. 173** must be marked.
174*/ 174*/
175LUAI_FUNC void luaC_upvalbarrier_ (lua_State *L, UpVal *uv) { 175LUAI_FUNC void luaC_upvalbarrier_ (lua_State *L, UpVal *uv) {