clos: stream-read-sequence: fix the order of arguments

Function si:do-read-sequence was called with the stream and the
sequence arguments reversed. Spotted by Christian Schafmeister.
This commit is contained in:
Daniel Kochmański 2020-06-11 08:24:30 +02:00
parent 3b39f2332f
commit 0158e14dea

View file

@ -572,7 +572,7 @@
(defmethod stream-read-sequence ((stream ansi-stream) sequence
&optional (start 0) (end nil))
(si:do-read-sequence stream sequence start end))
(si:do-read-sequence sequence stream start end))
(defmethod stream-read-sequence ((stream t) sequence &optional start end)
(declare (ignore sequence start end))