summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--hash.c8
-rw-r--r--txr.111
2 files changed, 16 insertions, 3 deletions
diff --git a/hash.c b/hash.c
index 8040fa68..1cbc8285 100644
--- a/hash.c
+++ b/hash.c
@@ -1797,7 +1797,11 @@ val hash_revget(val hash, val value, val test, val keyfun)
hash_iter_init(&hi, hash, self);
- test = default_arg(test, eql_f);
+ if (opt_compat && opt_compat <= 248)
+ test = default_arg(test, eql_f);
+ else
+ test = default_arg(test, equal_f);
+
keyfun = default_arg(keyfun, identity_f);
while ((cell = hash_iter_next(&hi)) != nil) {
@@ -1817,7 +1821,7 @@ val hash_keys_of(val hash, val value, val test, val keyfun)
hash_iter_init(&hi, hash, self);
- test = default_arg(test, eql_f);
+ test = default_arg(test, equal_f);
keyfun = default_arg(keyfun, identity_f);
while ((cell = hash_iter_next(&hi)) != nil) {
diff --git a/txr.1 b/txr.1
index 45800d08..4033359a 100644
--- a/txr.1
+++ b/txr.1
@@ -48421,7 +48421,7 @@ The comparison is performed using
The default
.meta testfun
is the
-.code eql
+.code equal
function.
.coNP Function @ hash-invert
@@ -76742,6 +76742,15 @@ of these version values, the described behaviors are provided if
is given an argument which is equal or lower. For instance
.code "-C 103"
selects the behaviors described below for version 105, but not those for 102.
+.IP 248
+Until \*(TX 248, the
+.code hash-revget
+function defaulted to using
+.code eql
+equality for searching the hash table for matching values rather than the
+current
+.codn equal .
+A compatibility value of 248 or lower restores the behavior.
.IP 244
Until \*(TX 244, the
.code env-hash