[bugfix] missed to mark stx->senv

This commit is contained in:
Yuichi Nishiwaki 2013-11-28 13:15:27 +09:00
parent 2a32de55b6
commit 3266ae7d3c
1 changed files with 1 additions and 1 deletions

View File

@ -268,7 +268,7 @@ gc_mark_object(pic_state *pic, struct pic_object *obj)
gc_mark_object(pic, (struct pic_object *)stx->macro);
}
if (stx->senv) {
gc_mark_object(pic, (struct pic_object *)stx->macro);
gc_mark_object(pic, (struct pic_object *)stx->senv);
}
break;
}