klisp

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

commit 95e1af6d08687295f30f0d4c8c04dfeb1e399031
parent 1c712fbdc7a85d2e74442e0d1c07c1eb88710714
Author: Andres Navarro <canavarro82@gmail.com>
Date:   Fri, 15 Apr 2011 18:33:30 -0300

merged bugfix in shared refs/defs in tokenizer

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

diff --git a/src/ktoken.c b/src/ktoken.c @@ -653,7 +653,7 @@ TValue ktok_read_special(klisp_State *K) /* avoid warning */ return KINERT; } - ch = buf[i++]; + ch = buf[++i]; } if (i == buf_len) { ktok_error(K, "Missing last char in srfi-38 token");