diff options
author | Steve Bennett <steveb@workware.net.au> | 2010-01-24 10:40:18 +1000 |
---|---|---|
committer | Steve Bennett <steveb@workware.net.au> | 2010-10-15 11:02:39 +1000 |
commit | 16360e9b8aded842ab0d343969eb13354750b5bb (patch) | |
tree | de8e8c532fa5e28804360919f0a651a2be8650cf /jim.c | |
parent | b6cb7fb49a02a24d4c9435d3c010bb1606c3d6fe (diff) | |
download | jimtcl-16360e9b8aded842ab0d343969eb13354750b5bb.zip jimtcl-16360e9b8aded842ab0d343969eb13354750b5bb.tar.gz jimtcl-16360e9b8aded842ab0d343969eb13354750b5bb.tar.bz2 |
Fix a couple of bugs
Fix unset ::var properly this time
Ensure that jimsh exits with the correct exit code
*: Previously a script that did 'exit 0' would exit with 7!
Diffstat (limited to 'jim.c')
-rw-r--r-- | jim.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -121,6 +121,7 @@ static char *JimEmptyStringRep = (char*) ""; * ---------------------------------------------------------------------------*/ static void JimChangeCallFrameId(Jim_Interp *interp, Jim_CallFrame *cf); static void JimFreeCallFrame(Jim_Interp *interp, Jim_CallFrame *cf, int flags); +static int ListSetIndex(Jim_Interp *interp, Jim_Obj *listPtr, int index, Jim_Obj *newObjPtr, int flags); static Jim_HashTableType JimVariablesHashTableType; |