Bugfix/double newlines in stderr (#5426)

This commit is contained in:
Fabian Keller
2017-02-24 09:48:38 +01:00
committed by Andreas Rumpf
parent 2d546ca0ac
commit e8ad59fdc4
6 changed files with 52 additions and 4 deletions

View File

@@ -2743,6 +2743,7 @@ when not defined(JS): #and not defined(nimscript):
# we use binary mode on Windows:
c_setmode(c_fileno(stdin), O_BINARY)
c_setmode(c_fileno(stdout), O_BINARY)
c_setmode(c_fileno(stderr), O_BINARY)
when defined(endb):
proc endbStep()