Skip to content
Snippets Groups Projects
Commit a49bcee6 authored by pw's avatar pw
Browse files

Fix ext:remove-oob-handler so it actually works.

parent 5d4b15a3
No related branches found
No related tags found
No related merge requests found
......@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.26 2000/09/20 00:34:42 dtc Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/internet.lisp,v 1.27 2000/11/06 13:02:23 pw Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -466,7 +466,7 @@ struct in_addr {
(let ((handlers (assoc fd *oob-handlers*)))
(declare (list handlers))
(when handlers
(let ((remaining (delete char handlers
(let ((remaining (delete char (cdr handlers)
:test #'eql
:key #'car)))
(declare (list remaining))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment