diff options
Diffstat (limited to 'editors/ed.c')
-rw-r--r-- | editors/ed.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editors/ed.c b/editors/ed.c index dbd8020..8ed4cd4 100644 --- a/editors/ed.c +++ b/editors/ed.c @@ -686,7 +686,7 @@ static int readLines(const char *file, int num) cc = 0; printf("\"%s\", ", file); - fflush(stdout); + fflush_all(); do { cp = memchr(bufPtr, '\n', bufUsed); @@ -775,7 +775,7 @@ static int writeLines(const char *file, int num1, int num2) } printf("\"%s\", ", file); - fflush(stdout); + fflush_all(); lp = findLine(num1); if (lp == NULL) { |