aboutsummaryrefslogtreecommitdiff
path: root/jim.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-24 10:48:25 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:39 +1000
commitd495fb19428bfc640aa4d0e9245bc8f23c31f380 (patch)
treeb80832b727b297f43584d274485742976e6d7529 /jim.c
parente68eadfbfe66d350b9656e3a4a91f7520e2bfba4 (diff)
downloadjimtcl-d495fb19428bfc640aa4d0e9245bc8f23c31f380.zip
jimtcl-d495fb19428bfc640aa4d0e9245bc8f23c31f380.tar.gz
jimtcl-d495fb19428bfc640aa4d0e9245bc8f23c31f380.tar.bz2
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 <cmd> Allow jim to be built in a different location *: e.g. mkdir build; cd build; ../configure ...; make jimsh Add dict.test
Diffstat (limited to 'jim.c')
-rw-r--r--jim.c1
1 files changed, 1 insertions, 0 deletions
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]) {