(cherry picked from commit 9b949855c7)
This commit is contained in:
Andreas Rumpf
2019-07-01 14:10:08 +02:00
committed by narimiran
parent eb295bbb7d
commit 59fbd261a6
2 changed files with 3 additions and 1 deletions

View File

@@ -11,6 +11,8 @@
then you need to change that to `rfind X, last=N` or `rfind X, 0, N`. (This
should minimize gotchas porting code from other languages like Python or C++.)
- On Windows stderr/stdout/stdin are not opened as binary files anymore. Use the switch
`-d:nimBinaryStdFiles` for a transition period.
### Breaking changes in the standard library

View File

@@ -569,7 +569,7 @@ when declared(stdout):
releaseSys echoLock
when defined(windows) and not defined(nimscript):
when defined(windows) and not defined(nimscript) and defined(nimBinaryStdFiles):
# work-around C's sucking abstraction:
# BUGFIX: stdin and stdout should be binary files!
proc c_setmode(handle, mode: cint) {.