summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/stream.c b/stream.c
index 535396ea..5df416f8 100644
--- a/stream.c
+++ b/stream.c
@@ -1314,6 +1314,11 @@ static val format_mode(const struct stdio_mode m)
if (m.binary)
*ptr++ = 'b';
+#ifdef __CYGWIN__
+ if (!m.binary && (!opt_compat || opt_compat > 143))
+ *ptr++ = 't';
+#endif
+
*ptr = 0;
return string(buf);
}