diff options
| author | Kenichi Handa <handa@m17n.org> | 1999-10-29 00:46:20 +0000 |
|---|---|---|
| committer | Kenichi Handa <handa@m17n.org> | 1999-10-29 00:46:20 +0000 |
| commit | 3636f7a323c106b4bc832b94eb3dc59d81210d79 (patch) | |
| tree | 3407f506f8dbb4ff387b97c02e7d38b17c15524d /src/coding.c | |
| parent | d699a7ad516ac4a18d592c13196bd28f57d5e45e (diff) | |
| download | emacs-3636f7a323c106b4bc832b94eb3dc59d81210d79.tar.gz | |
(code_convert_region): Update `dst' correctly.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index 1e75be5ab6f..c5dfd2102d0 100644 --- a/src/coding.c +++ b/src/coding.c @@ -4496,7 +4496,7 @@ code_convert_region (from, from_byte, to, to_byte, coding, encodep, replace) inserted_byte += coding->produced; len_byte -= coding->consumed; src += coding->consumed; - dst += inserted_byte; + dst += coding->produced; if (result == CODING_FINISH_NORMAL) { |
