iris

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

commit 8208d374717c3d77008e1a3ac2a1bdc07d818b2f
parent 00792adc339c684de30192de4ce3c45d3231766d
Author: sin <sin@2f30.org>
Date:   Mon, 19 May 2014 12:49:13 +0100

Remember to invalidate environment

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

diff --git a/sym.c b/sym.c @@ -88,6 +88,7 @@ popenv(void) { if (topenv - 1 < &env[0]) return -1; + memset(&topenv->symtab, 0, sizeof(topenv->symtab)); topenv--; return 0; }