From: Richard M. Stallman Date: Wed, 21 Jun 1995 19:45:27 +0000 (+0000) Subject: (main) [MSDOS]: Do set _fmode. X-Git-Tag: emacs-19.34~3509 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5281dea44219384e830d49e7ac646ce93ccf4814;p=emacs.git (main) [MSDOS]: Do set _fmode. This undoes part of the previous change. --- 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