iris

small scheme interpreter
git clone git://git.2f30.org/iris
Log | Files | Refs | LICENSE

commit 1145b94c97ce17d057128ab7b71a9cc6f90c9d6a
parent d9638de1c3ed1091d1cafcb205d41a4dbc605bba
Author: sin <sin@2f30.org>
Date:   Wed, 14 May 2014 16:12:14 +0100

Fix c/p error

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

diff --git a/parser.c b/parser.c @@ -65,7 +65,7 @@ eof(struct tok *t) return NULL; o = newobject(); o->type = OEof; - o->d.err.s = strdup(l); + o->d.eof.s = strdup(l); free(l); return o; }