summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2009-11-10 13:17:25 -0800
committerKaz Kylheku <kaz@kylheku.com>2009-11-10 13:17:25 -0800
commit2f62f352f603b837a5cf032c257531052530c410 (patch)
treef7c7c4965bc14ff8397a5784efcafeda3d0a1734 /ChangeLog
parentee8103fa715d464da45850f794da2df8f3773811 (diff)
downloadtxr-2f62f352f603b837a5cf032c257531052530c410.tar.gz
txr-2f62f352f603b837a5cf032c257531052530c410.tar.bz2
txr-2f62f352f603b837a5cf032c257531052530c410.zip
hash.c (hash_grow): Rewritten to avoid resizing the vector
in place, and thus having to pulling all conses into a big list. TODO: avoid recomputing the hash function over the keys. We could enhance cons cells with two more fields without using additional storage.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4ed23e2b..2799b9b2 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2009-11-10 Kaz Kylheku <kkylheku@gmail.com>
+
+ hash.c (hash_grow): Rewritten to avoid resizing the vector
+ in place, and thus having to pulling all conses into a big list.
+ TODO: avoid recomputing the hash function over the keys.
+ We could enhance cons cells with two more fields without using
+ additional storage.
+
2009-11-06 Kaz Kylheku <kkylheku@gmail.com>
Changing representation of objects to allow for unboxed characters.