Very minor fixes/

This commit is contained in:
Simon Brooke 2026-03-01 20:37:16 +00:00
parent 3a1f64d7ff
commit 72a8bc09e0
3 changed files with 4 additions and 11 deletions

View file

@ -348,16 +348,9 @@ lisp_println( struct stack_frame *frame, struct cons_pointer frame_pointer,
if ( writep( out_stream ) ) {
output = pointer2cell( out_stream ).payload.stream.stream;
inc_ref( out_stream );
} else {
output = file_to_url_file( stderr );
}
println( output );
println( output );
if ( writep( out_stream ) ) {
dec_ref( out_stream );
} else {
free( output );
}