mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-23 13:01:42 -08:00
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:
parent
3b39f2332f
commit
0158e14dea
1 changed files with 1 additions and 1 deletions
|
|
@ -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))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue