Fixed PEEK-CHAR for concatenated streams (M.Goffioul)

This commit is contained in:
jjgarcia 2004-12-06 10:24:43 +00:00
parent 51707cf320
commit bb95034589

View file

@ -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);