From 4c90be44965d1b165b2ad583d0f79da2332e703f 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] --- historic/jam/src/builtins.c | 1 + 1 file changed, 1 insertion(+) diff --git a/historic/jam/src/builtins.c b/historic/jam/src/builtins.c index ee8b950d6..240c52d07 100644 --- a/historic/jam/src/builtins.c +++ b/historic/jam/src/builtins.c @@ -494,6 +494,7 @@ builtin_echo( { list_print( lol_get( frame->args, 0 ) ); printf( "\n" ); + fflush( stdout ); return L0; }