1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-01 04:10:18 +02:00

(delete): Fix predicate arg order to match srfi-1 spec.

This commit is contained in:
Kevin Ryde 2003-05-12 23:02:01 +00:00
parent dfd03fb91b
commit 56adbd75d4

View file

@ -802,7 +802,7 @@
(let lp ((l list))
(if (null? l)
'()
(if (l= (car l) x)
(if (l= x (car l))
(lp (cdr l))
(cons (car l) (lp (cdr l))))))))