| Index: src/d8.cc
|
| diff --git a/src/d8.cc b/src/d8.cc
|
| index 611b3b570b1a4448cf5feae7dd13174e3934e289..4d3f1a41cea46e91be1322e462bcc8e5ce6cd8a1 100644
|
| --- a/src/d8.cc
|
| +++ b/src/d8.cc
|
| @@ -1484,11 +1484,6 @@ void Shell::RunShell(Isolate* isolate) {
|
| while (true) {
|
| HandleScope inner_scope(isolate);
|
| printf("d8> ");
|
| -#if defined(__native_client__)
|
| - // Native Client libc is used to being embedded in Chrome and
|
| - // has trouble recognizing when to flush.
|
| - fflush(stdout);
|
| -#endif
|
| Local<String> input = Shell::ReadFromStdin(isolate);
|
| if (input.IsEmpty()) break;
|
| ExecuteString(isolate, input, name, true, true);
|
|
|