Sample implementation: minor bug in make-list-comparator
Marc Nieper-WiÃkirchen 28 Jan 2017 18:32 UTC
This line
https://github.com/scheme-requests-for-implementation/srfi-128/blob/master/comparators/comparators-impl.scm#L279
has to be changed from
((and (empty? a) (empty? b) #f))
to
((and (empty? a) (empty? b)) #f).
If one looks into the code one immediately sees why.
--
Marc