From bfd9904870098f760405c8e278a87c0e6f6df860 Mon Sep 17 00:00:00 2001 From: Kenichi Handa Date: Wed, 5 Mar 1997 07:02:02 +0000 Subject: [PATCH] (decode_eol): Fix bug of converting CRLF to LF. --- src/coding.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/coding.c b/src/coding.c index 929e7e666bb..277a9b16678 100644 --- a/src/coding.c +++ b/src/coding.c @@ -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; -- 2.39.5