aboutsummaryrefslogtreecommitdiff
path: root/jim.c
diff options
context:
space:
mode:
authorSteve Bennett <steveb@workware.net.au>2010-01-24 13:58:17 +1000
committerSteve Bennett <steveb@workware.net.au>2010-10-15 11:02:46 +1000
commit54f0f29b3d487ae04cb181ba957565662a21a5a0 (patch)
tree2e098c1726f8298036ded97158724bd7dd5d00f6 /jim.c
parent57d2640b4ebbed560098538639e580d3d7d55d8d (diff)
downloadjimtcl-54f0f29b3d487ae04cb181ba957565662a21a5a0.zip
jimtcl-54f0f29b3d487ae04cb181ba957565662a21a5a0.tar.gz
jimtcl-54f0f29b3d487ae04cb181ba957565662a21a5a0.tar.bz2
Documentation, build system updates
Document reference-related commands *: ref, getref, setref, finalize, lambda were missing Build system updates *: Add check for long long to configure *: Change -Dwith_jim_ext_... to -Djim_ext_... *: Fix jim-eventloop when compiling with no long long
Diffstat (limited to 'jim.c')
-rw-r--r--jim.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/jim.c b/jim.c
index cd7316e..1d2c52b 100644
--- a/jim.c
+++ b/jim.c
@@ -4038,10 +4038,10 @@ static const Jim_HashTableType JimReferencesHashTableType = {
/* The string representation of references has two features in order
* to make the GC faster. The first is that every reference starts
- * with a non common character '~', in order to make the string matching
- * fater. The second is that the reference string rep his 32 characters
+ * with a non common character '<', in order to make the string matching
+ * faster. The second is that the reference string rep is 42 characters
* in length, this allows to avoid to check every object with a string
- * repr < 32, and usually there are many of this objects. */
+ * repr < 42, and usually there aren't many of these objects. */
#define JIM_REFERENCE_SPACE (35+JIM_REFERENCE_TAGLEN)