klisp

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

commit e3d7e46e591e5c2378ccd13127526f68f3771220
parent 54d1de159a72c2d7b29f594c663cb78d9e3b9605
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Mon, 14 Nov 2011 23:21:54 -0300

Bugfix: properly rooted the recently introduced sexp_comment_token

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

diff --git a/src/kgc.c b/src/kgc.c @@ -592,6 +592,7 @@ static void markroot (klisp_State *K) { markvalue(K, K->ktok_lparen); markvalue(K, K->ktok_rparen); markvalue(K, K->ktok_dot); + markvalue(K, K->ktok_sexp_comment); markvalue(K, K->shared_dict); /* Mark all objects in the auxiliary stack,