fix not flushing stdout in MSYS (#19590)

I did this pull request according to what xflywind said: https://github.com/nim-lang/Nim/pull/19584#issuecomment-1060085141
This commit is contained in:
Hamid Bluri
2022-03-07 12:51:42 +03:30
committed by GitHub
parent 488e18f90d
commit 6454472938

View File

@@ -27,6 +27,7 @@ when defined(windows):
tags: [ReadIOEffect, WriteIOEffect].} =
## Reads a line from stdin.
stdout.write(prompt)
stdout.flushFile()
result = readLine(stdin)
proc readLineFromStdin*(prompt: string, line: var string): bool {.