~ chicken-core (chicken-5) cf000f3c8605027f66b119fab93407a61f5249c0
commit cf000f3c8605027f66b119fab93407a61f5249c0 Author: felix <felix@call-with-current-continuation.org> AuthorDate: Sat Sep 24 18:08:16 2016 +0200 Commit: felix <felix@call-with-current-continuation.org> CommitDate: Sun Nov 13 11:39:37 2016 +0100 chicken-do: flush stdout before exec'ing diff --git a/chicken-do.c b/chicken-do.c index 401920f8..4fbb8d01 100644 --- a/chicken-do.c +++ b/chicken-do.c @@ -79,6 +79,7 @@ build: printf(" %s", args[ i ]); putchar('\n'); + fflush(stdout); } execute(args);Trap