From d495fb19428bfc640aa4d0e9245bc8f23c31f380 Mon Sep 17 00:00:00 2001 From: Steve Bennett Date: Sun, 24 Jan 2010 10:48:25 +1000 Subject: Bugs, features, tests The result of boolean ops on doubles is an int *: e.g. 0.5 < 0.1 should be 0, not 0.1 Implement jimsh -e Allow jim to be built in a different location *: e.g. mkdir build; cd build; ../configure ...; make jimsh Add dict.test --- jim.c | 1 + 1 file changed, 1 insertion(+) (limited to 'jim.c') diff --git a/jim.c b/jim.c index 207db79..9841bfc 100644 --- a/jim.c +++ b/jim.c @@ -7083,6 +7083,7 @@ trydouble: } goto retry_as_string; } + intresult = 0; Jim_DecrRefCount(interp, A); Jim_DecrRefCount(interp, B); switch(expr->opcode[i]) { -- cgit v1.1