From 65059037ab8165366021c2a6a6870b7cd928818d Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Tue, 26 May 1998 20:46:31 +0000 Subject: (detect_coding_system): Treat CODING_EOL_INCONSISTENT like CODING_EOL_UNDECIDED. --- src/coding.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/coding.c b/src/coding.c index 6f9d7ca14f..1bdac41c78 100644 --- a/src/coding.c +++ b/src/coding.c @@ -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); -- cgit v1.2.3