Mercurial > emacs
diff src/coding.c @ 83187:4a196c3bd2d8
Merged in changes from CVS trunk.
Patches applied:
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-479
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-480
Update from CVS
* miles@gnu.org--gnu-2004/emacs--cvs-trunk--0--patch-481
Update from CVS
git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-227
| author | Karoly Lorentey <lorentey@elte.hu> |
|---|---|
| date | Sat, 07 Aug 2004 15:05:02 +0000 |
| parents | dbcd0af66869 40a0843be50a |
| children | f70dc61a797f |
line wrap: on
line diff
--- a/src/coding.c Thu Aug 05 14:54:57 2004 +0000 +++ b/src/coding.c Sat Aug 07 15:05:02 2004 +0000 @@ -6234,6 +6234,11 @@ shrinked_bytes - from); free_conversion_buffer (&buf); + coding->consumed += shrinked_bytes; + coding->consumed_char += shrinked_bytes; + coding->produced += shrinked_bytes; + coding->produced_char += shrinked_bytes; + if (coding->cmp_data && coding->cmp_data->used) coding_restore_composition (coding, newstr); coding_free_composition_data (coding);
