klisp

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

commit dd4b78baa4ef92456d15a58ef80f03e6a28354ca
parent b2d273fdd9a85af093465d6a1c56a7f858a20155
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Fri, 15 Apr 2011 15:25:17 -0300

Bugfix: (from 7 revisions back). in klispC_link, flags was being setted to tt argument.

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

diff --git a/src/kgc.c b/src/kgc.c @@ -755,7 +755,7 @@ void klispC_link (klisp_State *K, GCObject *o, uint8_t tt, uint8_t flags) { K->rootgc = o; o->gch.gct = klispC_white(K); o->gch.tt = tt; - o->gch.flags = tt; + o->gch.flags = flags; /* NOTE that o->gch.gclist doesn't need to be setted */ }