summaryrefslogtreecommitdiffstats
path: root/hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'hash.c')
-rw-r--r--hash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hash.c b/hash.c
index 03967967..68f5929c 100644
--- a/hash.c
+++ b/hash.c
@@ -364,8 +364,8 @@ val make_hash(val weak_keys, val weak_vals, val equal_based)
h->userdata = nil;
h->hash_fun = equal_based ? equal_hash : eql_hash;
- h->assoc_fun = equal_based ? assoc : assq;
- h->acons_new_l_fun = equal_based ? acons_new_l : aconsq_new_l;
+ h->assoc_fun = equal_based ? assoc : assql;
+ h->acons_new_l_fun = equal_based ? acons_new_l : aconsql_new_l;
return hash;
}