From 2ddff3daba7b58bb25180f63226cbb033bba4fb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jurko=20Gospodneti=C4=87?= Date: Tue, 3 Jun 2008 23:19:58 +0000 Subject: [PATCH] Made all Boost Jam's ECHO commands automatically flush the standard output to make that output more promptly displayed to the user. [SVN r46104] --- src/engine/builtins.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/engine/builtins.c b/src/engine/builtins.c index ee8b950d6..240c52d07 100644 --- a/src/engine/builtins.c +++ b/src/engine/builtins.c @@ -494,6 +494,7 @@ builtin_echo( { list_print( lol_get( frame->args, 0 ) ); printf( "\n" ); + fflush( stdout ); return L0; }