Mercurial > emacs
diff src/coding.c @ 19068:36b06087dc31
(encode_coding_iso2022): When source data ends not at
character boundardy, set data in coding->carryover correctly, and
set SRC to SRC_END.
(encode_coding_sjis_big5): Likewise.
(encode_coding): Don't set coding->carryover_size to 0.
| author | Kenichi Handa <handa@m17n.org> |
|---|---|
| date | Fri, 01 Aug 1997 01:36:20 +0000 |
| parents | 302a7b2a6948 |
| children | 16ef8c28e4e0 |
line wrap: on
line diff
--- a/src/coding.c Fri Aug 01 01:36:20 1997 +0000 +++ b/src/coding.c Fri Aug 01 01:36:20 1997 +0000 @@ -1563,8 +1563,11 @@ } continue; label_end_of_loop: - coding->carryover_size = src - src_base; + /* We reach here because the source date ends not at character + boundary. */ + coding->carryover_size = src_end - src_base; bcopy (src_base, coding->carryover, coding->carryover_size); + src = src_end; break; } @@ -1975,9 +1978,9 @@ continue; label_end_of_loop: - coding->carryover_size = src - src_base; + coding->carryover_size = src_end - src_base; bcopy (src_base, coding->carryover, coding->carryover_size); - src = src_base; + src = src_end; break; } @@ -2802,7 +2805,6 @@ { int produced; - coding->carryover_size = 0; switch (coding->type) { case coding_type_no_conversion:
