mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-02 07:30:55 -08:00
Fixed PEEK-CHAR for concatenated streams (M.Goffioul)
This commit is contained in:
parent
51707cf320
commit
bb95034589
1 changed files with 1 additions and 1 deletions
|
|
@ -702,7 +702,7 @@ BEGIN:
|
|||
cl_object strmi = strm->stream.object0;
|
||||
c = EOF;
|
||||
while (!endp(strmi)) {
|
||||
c = ecl_getc(CAR(strmi));
|
||||
c = ecl_peek_char(CAR(strmi));
|
||||
if (c != EOF)
|
||||
break;
|
||||
strm->stream.object0 = strmi = CDR(strmi);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue