fix bad remq in test case

svn: r785
This commit is contained in:
Matthew Flatt 2005-09-07 11:58:43 +00:00
parent 05a025eba1
commit 4b7a8dece0

View File

@ -154,7 +154,7 @@
(define (remq v l)
(if (eq? (car l) v)
(cdr l)
(cons (car l) (remq (cdr l) v))))
(cons (car l) (remq v (cdr l)))))
;; ----------------------------------------
;; The server has a list of outstanding commit requests,
;; and it also must service each port operation (read,