summaryrefslogtreecommitdiffstats
path: root/srfi
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2025-07-16 11:10:53 -0400
committerGravatar Peter McGoron 2025-07-16 11:10:53 -0400
commit6dafb95155f2125a4bc2c81a4a1bb191b8eca828 (patch)
treee850ae64e9b7668a86b74f62b439f5850b652b2e /srfi
parentfix forgejo breakage (diff)
fix hashingHEADmaster
Diffstat (limited to '')
-rw-r--r--srfi-228.egg2
-rw-r--r--srfi-228.release-info3
-rw-r--r--srfi/srfi-228.scm3
3 files changed, 5 insertions, 3 deletions
diff --git a/srfi-228.egg b/srfi-228.egg
index 46dbc36..a887829 100644
--- a/srfi-228.egg
+++ b/srfi-228.egg
@@ -1,6 +1,6 @@
((author "Daphne Preston-Kendal")
(maintainer "Peter McGoron")
- (version "1.0.0")
+ (version "1.0.1")
(synopsis "Composing Comparators")
(category data)
(license "MIT")
diff --git a/srfi-228.release-info b/srfi-228.release-info
index 0cd05ca..0ee0b9e 100644
--- a/srfi-228.release-info
+++ b/srfi-228.release-info
@@ -1,3 +1,4 @@
(repo git "https://software.mcgoron.com/peter/srfi-228")
-(uri targz "https://files.mcgoron.com/chicken/srfi-228/1.0.0.tar.gz")
+(uri targz "https://files.mcgoron.com/chicken/srfi-228/{egg-release}-{chicken-release}.tar.gz")
+(release "1.0.1")
(release "1.0.0")
diff --git a/srfi/srfi-228.scm b/srfi/srfi-228.scm
index 139093f..3d9b22f 100644
--- a/srfi/srfi-228.scm
+++ b/srfi/srfi-228.scm
@@ -13,7 +13,8 @@
#f)
(if (comparator-hash-function contents-comparator)
(lambda (x)
- ((comparator-hash-function contents-comparator) x))
+ ((comparator-hash-function contents-comparator)
+ (unwrap x)))
#f)))
(define (make-product-comparator . comparators)