(decode_eol): Fix bug of converting CRLF to LF.

This commit is contained in:
Kenichi Handa 1997-03-05 07:02:02 +00:00
parent 626665b47b
commit bfd9904870

View file

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