Skip to content
Snippets Groups Projects
Commit bbf2cca7 authored by ram's avatar ram
Browse files

Picked up Bill's change of CASE to ECASE to suppress type warnings.

parent d6bb4f20
No related branches found
No related tags found
No related merge requests found
...@@ -212,7 +212,7 @@ ...@@ -212,7 +212,7 @@
(unless (or (handler-active handler) (unless (or (handler-active handler)
(handler-bogus handler)) (handler-bogus handler))
(let ((fd (handler-descriptor handler))) (let ((fd (handler-descriptor handler)))
(case (handler-direction handler) (ecase (handler-direction handler)
(:input (:input
(setf read-mask (logior read-mask (ash 1 fd)))) (setf read-mask (logior read-mask (ash 1 fd))))
(:output (:output
...@@ -307,7 +307,7 @@ ...@@ -307,7 +307,7 @@
(let ((result nil)) (let ((result nil))
(dolist (handler *descriptor-handlers*) (dolist (handler *descriptor-handlers*)
(when (not (zerop (logand (ash 1 (handler-descriptor handler)) (when (not (zerop (logand (ash 1 (handler-descriptor handler))
(case (handler-direction handler) (ecase (handler-direction handler)
(:input readable) (:input readable)
(:output writeable))))) (:output writeable)))))
(unwind-protect (unwind-protect
...@@ -323,7 +323,7 @@ ...@@ -323,7 +323,7 @@
(handler-descriptor (handler-descriptor
handler))) handler)))
,var)))) ,var))))
(case (handler-direction handler) (ecase (handler-direction handler)
(:input (frob readable)) (:input (frob readable))
(:output (frob writeable)))) (:output (frob writeable))))
(setf result t))) (setf result t)))
......
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