Some changes to how streams work, clean up alisp.org

This commit is contained in:
2025-09-01 21:47:25 +01:00
parent 1aa01d2a89
commit 030a289497
4 changed files with 41 additions and 24 deletions

View File

@@ -43,7 +43,7 @@ stream_err_t stream_init_file(stream_t *stream, char *name, FILE *pipe)
vec_init(&stream->pipe.cache, STREAM_DEFAULT_CHUNK);
// try to read an initial chunk
stream_chunk(stream);
// stream_chunk(stream);
return STREAM_ERR_OK;
}