(shrink_decoding_region): No short cut by
coding->heading_ascii if eol conversion is necessary.
This commit is contained in:
parent
aabd38eca1
commit
aa60dea617
1 changed files with 3 additions and 3 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue