summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2012-04-04 22:43:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2012-04-04 22:43:20 -0700
commitd1d2e88fcebad94628f6b65b7420dec8de9b10b5 (patch)
treec5e0a9812cfe2b5e8c2763fea728449b78c07160 /hash.c
parent22549f7e02841d5e6fcc6654dbaddcedc485f7e3 (diff)
downloadtxr-d1d2e88fcebad94628f6b65b7420dec8de9b10b5.tar.gz
txr-d1d2e88fcebad94628f6b65b7420dec8de9b10b5.tar.bz2
txr-d1d2e88fcebad94628f6b65b7420dec8de9b10b5.zip
* hash.c (hash_grow, gethash_l, gethash, gethash_f): Replace
useless use of *vecref_l() with vecref().
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/hash.c b/hash.c
index 554935d4..384a741d 100644
--- a/hash.c
+++ b/hash.c
@@ -332,7 +332,7 @@ static void hash_grow(struct hash *h)
bug_unless (new_modulus > h->modulus);
for (i = 0; i < h->modulus; i++) {
- val conses = *vecref_l(h->table, num(i));
+ val conses = vecref(h->table, num(i));
while (conses) {
val entry = car(conses);
@@ -384,7 +384,7 @@ val *gethash_l(val hash, val key, val *new_p)
val gethash(val hash, val key)
{
struct hash *h = (struct hash *) cobj_handle(hash, hash_s);
- val chain = *vecref_l(h->table, num(h->hash_fun(key) % h->modulus));
+ val chain = vecref(h->table, num(h->hash_fun(key) % h->modulus));
val found = h->assoc_fun(key, chain);
return cdr(found);
}
@@ -392,7 +392,7 @@ val gethash(val hash, val key)
val gethash_f(val hash, val key, val *found)
{
struct hash *h = (struct hash *) cobj_handle(hash, hash_s);
- val chain = *vecref_l(h->table, num(h->hash_fun(key) % h->modulus));
+ val chain = vecref(h->table, num(h->hash_fun(key) % h->modulus));
set(*found, h->assoc_fun(key, chain));
return cdr(*found);
}
@@ -400,7 +400,7 @@ val gethash_f(val hash, val key, val *found)
val gethash_n(val hash, val key, val notfound_val)
{
struct hash *h = (struct hash *) cobj_handle(hash, hash_s);
- val chain = *vecref_l(h->table, num(h->hash_fun(key) % h->modulus));
+ val chain = vecref(h->table, num(h->hash_fun(key) % h->modulus));
val existing = h->assoc_fun(key, chain);
return if3(existing, cdr(existing), notfound_val);
}