diff --git a/src/coding.c b/src/coding.c index c04b14ade62..29477c75e5b 100644 --- a/src/coding.c +++ b/src/coding.c @@ -3764,7 +3764,9 @@ shrink_decoding_region (beg, end, coding, str) return; } - if (coding->heading_ascii >= 0) + eol_conversion = (coding->eol_type != CODING_EOL_LF); + + if ((! eol_conversion) && (coding->heading_ascii >= 0)) /* Detection routine has already found how much we can skip at the head. */ *beg += coding->heading_ascii; @@ -3780,8 +3782,6 @@ shrink_decoding_region (beg, end, coding, str) endp_orig = endp = begp + *end - *beg; } - eol_conversion = (coding->eol_type != CODING_EOL_LF); - switch (coding->type) { case coding_type_emacs_mule: