(shrink_decoding_region): No short cut by

coding->heading_ascii if eol conversion is necessary.
This commit is contained in:
Kenichi Handa 1998-05-21 01:48:52 +00:00
parent aabd38eca1
commit aa60dea617

View file

@ -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: