io: *TERMINAL-IO* output stream is stderr

This is to ensure that the line is not buffered and that it is visible to the
user. It is a synonym from *QUERY-IO* and *DEBUG-IO* which both are interactive.
This commit is contained in:
Daniel Kochmański 2024-11-01 08:20:50 +01:00
parent 871a2165a3
commit e345fd612c

View file

@ -6331,7 +6331,7 @@ init_file(void)
ECL_SET(@'*error-output*', error_output);
cl_core.terminal_io = aux
= cl_make_two_way_stream(standard_input, standard_output);
= cl_make_two_way_stream(standard_input, error_output);
ECL_SET(@'*terminal-io*', aux);
aux = cl_make_synonym_stream(@'*terminal-io*');