diff --git a/src/bin/e_main.c b/src/bin/e_main.c index cc9c4fabd..cff5ccd8c 100644 --- a/src/bin/e_main.c +++ b/src/bin/e_main.c @@ -63,7 +63,10 @@ main(int argc, char **argv) int nowelcome = 0; int after_restart = 0; char buf[1024]; - + + /* for debugging by redirecting stdout of e to a log file to tail */ + setvbuf(stdout, NULL, _IONBF, 0); + if (getenv("NOSPLASH")) nosplash = 1; if (getenv("NOSTARTUP")) nostartup = 1; if (getenv("NOWELCOME")) nowelcome = 1;