diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-07-01 14:10:08 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-01 14:10:08 +0200 |
commit | 9b949855c7071749a459809f12da21d827eedc9d (patch) | |
tree | 721723715ca81dd6142dd0a8dc1a7193fbc2189a /lib/system | |
parent | 2c10b246ec8319a9f065d5ef50fc891eeffc7ad9 (diff) | |
download | Nim-9b949855c7071749a459809f12da21d827eedc9d.tar.gz |
fixes #11618 (#11631)
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/io.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/io.nim b/lib/system/io.nim index 4497b1b0b..b967d0827 100644 --- a/lib/system/io.nim +++ b/lib/system/io.nim @@ -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) {. |