summaryrefslogtreecommitdiffstats
path: root/stream.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2016-07-12 06:58:20 -0700
committerKaz Kylheku <kaz@kylheku.com>2016-07-12 06:58:20 -0700
commit48fb45fc49128d64fc7b78e7359fc5753976632f (patch)
tree057c09e675c9b70db20ddc20698b54f982745065 /stream.c
parentc3fb490230d775b05606a125231ae64bc75a5391 (diff)
downloadtxr-48fb45fc49128d64fc7b78e7359fc5753976632f.tar.gz
txr-48fb45fc49128d64fc7b78e7359fc5753976632f.tar.bz2
txr-48fb45fc49128d64fc7b78e7359fc5753976632f.zip
Don't open text files using "t" mode on Cygwin.
Retracting the recent change to add the "t" mode when opening non-binary streams on Cygwin, which arranges for line ending conversion. This restores the Unix-like treatment of text files on Cygwin, which is expected of programs. The Windows native version of TXR will do line ending conversion thanks to the behavior of text streams in the Cygnal fork of Cygwin. * stream.c (format_mode): Only add the "t" option on Cygwin if compatibility with 144 and 145 is selected. * txr.1: Updated compatibility notes.
Diffstat (limited to 'stream.c')
-rw-r--r--stream.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream.c b/stream.c
index 8abff6cb..14b50f15 100644
--- a/stream.c
+++ b/stream.c
@@ -1317,7 +1317,7 @@ static val format_mode(const struct stdio_mode m)
*ptr++ = 'b';
#ifdef __CYGWIN__
- if (!m.binary && (!opt_compat || opt_compat > 143))
+ if (!m.binary && (opt_compat == 144 || opt_compat == 145))
*ptr++ = 't';
#endif