(detect_coding_system): Treat CODING_EOL_INCONSISTENT
authorRichard M. Stallman <rms@gnu.org>
Tue, 26 May 1998 20:46:31 +0000 (20:46 +0000)
committerRichard M. Stallman <rms@gnu.org>
Tue, 26 May 1998 20:46:31 +0000 (20:46 +0000)
like CODING_EOL_UNDECIDED.

src/coding.c

index 6f9d7ca..1bdac41 100644 (file)
@@ -4546,10 +4546,11 @@ detect_coding_system (src, src_bytes, highest)
   if (!highest)
     val = Fnreverse (val);
 
-  /* Then, substitute the elements by subsidiary coding systems.  */
+  /* Then, replace the elements with subsidiary coding systems.  */
   for (tmp = val; !NILP (tmp); tmp = XCONS (tmp)->cdr)
     {
-      if (eol_type != CODING_EOL_UNDECIDED)
+      if (eol_type != CODING_EOL_UNDECIDED
+         && eol_type != CODING_EOL_INCONSISTENT)
        {
          Lisp_Object eol;
          eol = Fget (XCONS (tmp)->car, Qeol_type);