aboutsummaryrefslogtreecommitdiff
path: root/jim.h
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2018-07-14 13:51:55 +1000
committerSteve Bennett <steveb@workware.net.au>2018-09-04 08:00:23 +1000
commit7e7af2944f2dfaa5398e88d49e2941e786a56925 (patch)
treead0f0f3317035aa9238bf26d6fd52d57bfefb478 /jim.h
parent6c8193e4380f2e8817e9020053027ea0c39cdb27 (diff)
downloadjimtcl-7e7af2944f2dfaa5398e88d49e2941e786a56925.zip
jimtcl-7e7af2944f2dfaa5398e88d49e2941e786a56925.tar.gz
jimtcl-7e7af2944f2dfaa5398e88d49e2941e786a56925.tar.bz2
Tidy some signed/unsigned comparisons
Signed-off-by: Steve Bennett <steveb@workware.net.au>
Diffstat (limited to 'jim.h')
-rw-r--r--jim.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/jim.h b/jim.h
index 1dd0f0c..c2b8824 100644
--- a/jim.h
+++ b/jim.h
@@ -535,7 +535,7 @@ typedef struct Jim_Interp {
unsigned long referenceNextId; /* Next id for reference. */
struct Jim_HashTable references; /* References hash table. */
unsigned long lastCollectId; /* reference max Id of the last GC
- execution. It's set to -1 while the collection
+ execution. It's set to ~0 while the collection
is running as sentinel to avoid to recursive
calls via the [collect] command inside
finalizers. */