mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 20:50:53 -08:00
(decode_eol): Fix bug of converting CRLF to LF.
This commit is contained in:
parent
626665b47b
commit
bfd9904870
1 changed files with 1 additions and 1 deletions
|
|
@ -1872,7 +1872,7 @@ decode_eol (coding, source, destination, src_bytes, dst_bytes, consumed)
|
|||
ONE_MORE_BYTE (c);
|
||||
if (c != '\n')
|
||||
*dst++ = '\r';
|
||||
|
||||
*dst++ = c;
|
||||
}
|
||||
else
|
||||
*dst++ = c;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue