# HG changeset patch # User Richard M. Stallman # Date 868826221 0 # Node ID 2ef1d85394418c28cf4c423b5c6ff17d774cc7f9 # Parent 8f719bb518cc04953b115a779e0cf587a9ebd878 (Fwrite_region) [DOS_NT]: Always use binary mode since coding conversion now takes care of NL -> CRLF. diff -r 8f719bb518cc -r 2ef1d8539441 src/fileio.c --- a/src/fileio.c Sun Jul 13 20:20:11 1997 +0000 +++ b/src/fileio.c Sun Jul 13 20:37:01 1997 +0000 @@ -3799,8 +3799,7 @@ struct gcpro gcpro1, gcpro2, gcpro3, gcpro4, gcpro5; struct buffer *given_buffer; #ifdef DOS_NT - int buffer_file_type - = NILP (current_buffer->buffer_file_type) ? O_TEXT : O_BINARY; + int buffer_file_type = O_BINARY; #endif /* DOS_NT */ struct coding_system coding;