aboutsummaryrefslogtreecommitdiffstats
path: root/src/coding.c
diff options
context:
space:
mode:
authorKenichi Handa2000-05-23 00:17:27 +0000
committerKenichi Handa2000-05-23 00:17:27 +0000
commitff2b1ea945cd782f98d1db3cbfd20ed53f638538 (patch)
treea38880d2e10115cbc5bc98a0f7a13e271ac4bde3 /src/coding.c
parent29ced61baa2e2bfb99fd1c19887f4baa236568ad (diff)
downloademacs-ff2b1ea945cd782f98d1db3cbfd20ed53f638538.tar.gz
emacs-ff2b1ea945cd782f98d1db3cbfd20ed53f638538.zip
(encode_eol): Fix a bug of DOS style EOL encoding.
Diffstat (limited to 'src/coding.c')
-rw-r--r--src/coding.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/coding.c b/src/coding.c
index 148b105e3d6..bf3b731a99e 100644
--- a/src/coding.c
+++ b/src/coding.c
@@ -2757,6 +2757,7 @@ encode_eol (coding, source, destination, src_bytes, dst_bytes)
2757 else 2757 else
2758 EMIT_ONE_BYTE (c); 2758 EMIT_ONE_BYTE (c);
2759 } 2759 }
2760 src_base = src;
2760 label_end_of_loop: 2761 label_end_of_loop:
2761 } 2762 }
2762 else 2763 else