1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-28 07:45:00 +00:00

(shrink_encoding_region): If eol_type is not yet decided and

system_eol_type is not LF, don't shrink.
This commit is contained in:
Kenichi Handa 2006-04-13 04:58:07 +00:00
parent 9642847f36
commit 73ec0f8900
2 changed files with 4 additions and 0 deletions

View File

@ -3,6 +3,8 @@
* coding.c (setup_coding_system): Fix previous change.
(encode_coding): If eol_type is not yet decided, use
system_eol_type.
(shrink_encoding_region): If eol_type is not yet decided and
system_eol_type is not LF, don't shrink.
2006-04-13 Nick Roberts <nickrob@snap.net.nz>

View File

@ -5256,6 +5256,8 @@ shrink_encoding_region (beg, end, coding, str)
if (coding->type == coding_type_ccl
|| coding->eol_type == CODING_EOL_CRLF
|| coding->eol_type == CODING_EOL_CR
|| (coding->eol_type == CODING_EOL_UNDECIDED
&& system_eol_type != CODING_EOL_LF)
|| (coding->cmp_data && coding->cmp_data->used > 0))
{
/* We can't skip any data. */