diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/coding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/coding.c b/src/coding.c index 5e4c0b9afdd..1909ce4e124 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -4388,8 +4388,8 @@ code_convert_string (str, coding, encodep, nocopy) | |||
| 4388 | if (encodep) | 4388 | if (encodep) |
| 4389 | str = make_unibyte_string (buf, len + coding->produced); | 4389 | str = make_unibyte_string (buf, len + coding->produced); |
| 4390 | else | 4390 | else |
| 4391 | str = make_multibyte_string (buf, len + coding->produced_char, | 4391 | str = make_string_from_bytes (buf, len + coding->produced_char, |
| 4392 | len + coding->produced); | 4392 | len + coding->produced); |
| 4393 | return str; | 4393 | return str; |
| 4394 | } | 4394 | } |
| 4395 | 4395 | ||