2
0
Fork 0
mirror of git://git.savannah.gnu.org/guix/data-service.git synced 2023-12-14 03:23:03 +01:00

Remove redundant lambda from deduplicate-strings

This commit is contained in:
Christopher Baines 2019-03-24 17:31:38 +00:00
parent 5fcabe95f2
commit 2b1142b424
No known key found for this signature in database
GPG key ID: 5E28A33B0B84F577

View file

@ -40,6 +40,4 @@
result
(cons (first pair) result))))
'()
(sort strings
(lambda (a b)
(string<? a b)))))
(sort strings string<?)))