klisp

an open source interpreter for the Kernel Programming Language.
git clone http://git.hanabi.in/repos/klisp.git
Log | Files | Refs | README

commit 797474f131feeb7c59c8e510edaf297d891bb7d5
parent 69e9ed33df4c99868174e6fdf5e4ed263a21fcd8
Author: Oto Havle <havleoto@gmail.com>
Date:   Tue, 18 Oct 2011 20:24:48 +0200

Small fix in GC code.

Diffstat:
Msrc/kgc.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/kgc.c b/src/kgc.c @@ -109,6 +109,7 @@ static void reallymarkobject (klisp_State *K, GCObject *o) case K_TPORT: case K_TTABLE: case K_TERROR: + case K_TBLOB: o->gch.gclist = K->gray; K->gray = o; break;