1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-23 07:19:15 +00:00

(main) [MSDOS]: Do set _fmode.

This undoes part of the previous change.
This commit is contained in:
Richard M. Stallman 1995-06-21 19:45:27 +00:00
parent cbfc04e02c
commit 5281dea442

View File

@ -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