changeset 12350:68508136431f

(main) [MSDOS]: Do set _fmode. This undoes part of the previous change.
author Richard M. Stallman <rms@gnu.org>
date Wed, 21 Jun 1995 19:45:27 +0000
parents f5ba89f88cfd
children f2e9eb6a8939
files lib-src/make-docfile.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/make-docfile.c	Wed Jun 21 18:57:25 1995 +0000
+++ b/lib-src/make-docfile.c	Wed Jun 21 19:45:27 1995 +0000
@@ -118,9 +118,9 @@
 
   /* 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