~ chicken-core (chicken-5) f5caf7349416ceb8f8d6ba8a286078d0af361d66


commit f5caf7349416ceb8f8d6ba8a286078d0af361d66
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: Sat Sep 24 18:08:16 2016 +0200

    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