Revert "Must flush stdout, else a "lazy" stdout will not flush before prompt."

This reverts commit bd6cbaf3b69f1bf52055c4d7071d9174b97c7a9d.
This commit is contained in:
Frederich Munch 2017-02-07 16:04:59 -05:00 committed by Axel Naumann
parent 6054022ca3
commit 49aacfc5e6

View File

@ -124,8 +124,8 @@ namespace textinput {
}
}
// Don't rely on flushing here.
#define SYNC_OUT(fd) if (fd==STDOUT_FILENO) { ::fflush(stdout); }
// Don't rely on flushing here. REALLY, try to fix it elsewhere!
#define SYNC_OUT(fd) /*if (fd==STDOUT_FILENO) { ::fflush(stdout); } }*/
TerminalDisplayUnix::~TerminalDisplayUnix() {
Detach();