Index: src/Output.cc =================================================================== --- src/Output.cc (revision 476) +++ src/Output.cc (working copy) @@ -194,7 +194,11 @@ void Output::init(bool logit) { - if (!isatty(fileno(stdout))) cout.setf(ios::unitbuf); + if (!isatty(fileno(stdout))) + { + cout.flush(); + cout.setf(ios::unitbuf); + } #if CURSES_USABLE