summaryrefslogtreecommitdiff
path: root/lib-src/make-docfile.c
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1995-06-21 19:45:27 +0000
committerRichard M. Stallman <rms@gnu.org>1995-06-21 19:45:27 +0000
commit5281dea44219384e830d49e7ac646ce93ccf4814 (patch)
tree320bbbf8a9c0af429fdefb87388c282f161daa8d /lib-src/make-docfile.c
parentcbfc04e02ca6961cb4e730971fae67cb64e20767 (diff)
downloademacs-5281dea44219384e830d49e7ac646ce93ccf4814.tar.gz
(main) [MSDOS]: Do set _fmode.
This undoes part of the previous change.
Diffstat (limited to 'lib-src/make-docfile.c')
-rw-r--r--lib-src/make-docfile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c
index 50b755b41bb..948a7257089 100644
--- a/lib-src/make-docfile.c
+++ b/lib-src/make-docfile.c
@@ -118,9 +118,9 @@ main (argc, argv)
/* Don't put CRs in the DOC file. */
#ifdef MSDOS
+ _fmode = O_BINARY;
#if 0 /* Suspicion is that this causes hanging.
So instead we require people to use -o on MSDOS. */
- _fmode = O_BINARY;
(stdout)->_flag &= ~_IOTEXT;
_setmode (fileno (stdout), O_BINARY);
#endif