Fixes: debbugs:17865
* coding.c (encode_coding_utf_8): Correctly count produced_chars also in unibyte case.
This commit is contained in:
parent
90f33ead9b
commit
b084415e27
2 changed files with 6 additions and 1 deletions
|
@ -1549,8 +1549,8 @@ encode_coding_utf_8 (struct coding_system *coding)
|
|||
*dst++ = CHAR_TO_BYTE8 (c);
|
||||
else
|
||||
CHAR_STRING_ADVANCE_NO_UNIFY (c, dst);
|
||||
produced_chars++;
|
||||
}
|
||||
produced_chars = dst - (coding->destination + coding->produced);
|
||||
}
|
||||
record_conversion_result (coding, CODING_RESULT_SUCCESS);
|
||||
coding->produced_char += produced_chars;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue