mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-14 05:12:38 -08:00
Null stream should be closed initially
This commit is contained in:
parent
eb548bfd4a
commit
ba7f0da4a7
1 changed files with 1 additions and 1 deletions
|
|
@ -2992,7 +2992,7 @@ init_file(void)
|
|||
|
||||
null_stream = cl_alloc_object(t_stream);
|
||||
null_stream->stream.mode = (short)smm_io;
|
||||
null_stream->stream.closed = 0;
|
||||
null_stream->stream.closed = 1;
|
||||
null_stream->stream.file = NULL;
|
||||
null_stream->stream.object0 = @'base-char';
|
||||
null_stream->stream.object1 = make_constant_base_string("/dev/null");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue