Fix typo: remove double application of MAKE-I/O-COMPLETION-HANDLER.

This commit is contained in:
sperber 2002-11-12 13:13:02 +00:00
parent a1e9e54bbc
commit 6fc80dfb4b
1 changed files with 5 additions and 6 deletions

View File

@ -19,12 +19,11 @@
(cdr old)))))))
(set-interrupt-handler! (enum interrupt i/o-write-completion)
(make-i/o-completion-handler
(make-i/o-completion-handler
(lambda (cell channel)
(let ((old (cell-ref cell)))
(cell-set! cell
(cons (car old)
(cons channel (cdr old))))))))))
(lambda (cell channel)
(let ((old (cell-ref cell)))
(cell-set! cell
(cons (car old)
(cons channel (cdr old)))))))))
; The warning message is printed using DEBUG-MESSAGE because to try to make
; sure it appears in spite of whatever problem's the I/O system is having.