aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKenichi Handa2003-10-09 23:19:34 +0000
committerKenichi Handa2003-10-09 23:19:34 +0000
commit652a7e95890cf21daf8404273e7f12333c5022e8 (patch)
tree45cb87a682d4c3da91cedf675baa0af40a36f9c2 /src
parentc72094481058f1917fa92011c0150246a0c22995 (diff)
downloademacs-652a7e95890cf21daf8404273e7f12333c5022e8.tar.gz
emacs-652a7e95890cf21daf8404273e7f12333c5022e8.zip
(Finsert_file_contents) [DOS_NT]: Fix previous change.
Diffstat (limited to 'src')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
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. */)
4521 /* Use the conversion type to determine buffer-file-type 4521 /* Use the conversion type to determine buffer-file-type
4522 (find-buffer-file-type is now used to help determine the 4522 (find-buffer-file-type is now used to help determine the
4523 conversion). */ 4523 conversion). */
4524 if ((EQ (CODING_ID_EOL_TYPE (coding.id), Qundecided) 4524 if ((VECTORP (CODING_ID_EOL_TYPE (coding.id))
4525 || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix)) 4525 || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix))
4526 && ! CODING_REQUIRE_DECODING (&coding)) 4526 && ! CODING_REQUIRE_DECODING (&coding))
4527 current_buffer->buffer_file_type = Qt; 4527 current_buffer->buffer_file_type = Qt;