From 652a7e95890cf21daf8404273e7f12333c5022e8 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Thu, 9 Oct 2003 23:19:34 +0000 Subject: [PATCH] (Finsert_file_contents) [DOS_NT]: Fix previous change. --- src/fileio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 69893a4192f..17fcad23e4e 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4521,7 +4521,7 @@ actually used. */) /* Use the conversion type to determine buffer-file-type (find-buffer-file-type is now used to help determine the conversion). */ - if ((EQ (CODING_ID_EOL_TYPE (coding.id), Qundecided) + if ((VECTORP (CODING_ID_EOL_TYPE (coding.id)) || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix)) && ! CODING_REQUIRE_DECODING (&coding)) current_buffer->buffer_file_type = Qt; -- 2.39.5