]> git.eshelyaron.com Git - emacs.git/commitdiff
(Finsert_file_contents) [DOS_NT]: Use the macro CODING_ID_EOL_TYPE..
authorKenichi Handa <handa@m17n.org>
Thu, 9 Oct 2003 23:08:14 +0000 (23:08 +0000)
committerKenichi Handa <handa@m17n.org>
Thu, 9 Oct 2003 23:08:14 +0000 (23:08 +0000)
src/fileio.c

index 7571a1c96024cfa7826d934354521f09e25f1f44..69893a4192f1e58993c5d6fbbaa8fcdaa5018942 100644 (file)
@@ -4521,8 +4521,8 @@ actually used.  */)
   /* Use the conversion type to determine buffer-file-type
      (find-buffer-file-type is now used to help determine the
      conversion).  */
-  if ((coding.eol_type == eol_type_undecided
-       || coding.eol_type == eol_type_lf)
+  if ((EQ (CODING_ID_EOL_TYPE (coding.id), Qundecided)
+       || EQ (CODING_ID_EOL_TYPE (coding.id), Qunix))
       && ! CODING_REQUIRE_DECODING (&coding))
     current_buffer->buffer_file_type = Qt;
   else