Merge pull request #85 from Serkora/leflush

Flush every local echo-ed char
This commit is contained in:
Martin Lund 2021-01-18 01:04:27 +01:00 committed by GitHub
commit 3195132fa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -535,6 +535,7 @@ static void optional_local_echo(char c)
if (!option.local_echo)
return;
print(c);
fflush(stdout);
if (option.log)
log_write(c);
}