Commit c694e36295154f07eb56891ae6e04cd179114399

Thomas de Grivel 2017-06-17T21:31:13

ecase -> case

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/cl-stream.lisp b/cl-stream.lisp
index 7e5a3b6..7edcab6 100644
--- a/cl-stream.lisp
+++ b/cl-stream.lisp
@@ -258,7 +258,7 @@ Returns NIL if successful, or
   (check-if-open stream)
   (if (< (stream-input-index stream) (stream-input-length stream))
       (stream-read-element-from-buffer stream)
-      (ecase (stream-fill-input-buffer stream)
+      (case (stream-fill-input-buffer stream)
 	((nil) (stream-read-element-from-buffer stream))
 	((:eof) (values nil :eof))
 	((:non-blocking) (values nil :non-blocking))